diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-07 05:50:34 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 05:50:34 +0800 |
commit | a3ab578d379f429d9557e029a1beea751d1d8667 (patch) | |
tree | c9fb4af6865ffe14fe51b730064c6569aeba7fc2 /lib/ephy-prefs.h | |
parent | 14c4db4c450672c896d6f08f520d03da323ef162 (diff) | |
download | gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.gz gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.zst gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.zip |
ephy-prefs: correct the order of the history time filter enum
EVER needs to be at the end, not in the second position, since that's
the order in the ephy history window.
Diffstat (limited to 'lib/ephy-prefs.h')
-rw-r--r-- | lib/ephy-prefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-prefs.h b/lib/ephy-prefs.h index 4ba2a918e..9eadad036 100644 --- a/lib/ephy-prefs.h +++ b/lib/ephy-prefs.h @@ -45,10 +45,10 @@ typedef enum typedef enum { EPHY_PREFS_STATE_HISTORY_DATE_FILTER_LAST_HALF_HOUR, - EPHY_PREFS_STATE_HISTORY_DATE_FILTER_EVER, EPHY_PREFS_STATE_HISTORY_DATE_FILTER_TODAY, EPHY_PREFS_STATE_HISTORY_DATE_FILTER_LAST_TWO_DAYS, - EPHY_PREFS_STATE_HISTORY_DATE_FILTER_LAST_THREE_DAYS + EPHY_PREFS_STATE_HISTORY_DATE_FILTER_LAST_THREE_DAYS, + EPHY_PREFS_STATE_HISTORY_DATE_FILTER_EVER, } EphyPrefsStateHistoryDateFilter; #define EPHY_PREFS_UI_SCHEMA "org.gnome.Epiphany.ui" |