aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-07 05:50:34 +0800
committerXan Lopez <xan@igalia.com>2012-03-07 05:50:34 +0800
commita3ab578d379f429d9557e029a1beea751d1d8667 (patch)
treec9fb4af6865ffe14fe51b730064c6569aeba7fc2 /lib
parent14c4db4c450672c896d6f08f520d03da323ef162 (diff)
downloadgsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar
gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.gz
gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.bz2
gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.lz
gsoc2013-epiphany-a3ab578d379f429d9557e029a1beea751d1d8667.tar.xz
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')
-rw-r--r--lib/ephy-prefs.h4
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"