diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-08-14 18:50:27 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-08-14 18:50:27 +0800 |
commit | c3463bf64ddd607326384f6134fc38b9710887b8 (patch) | |
tree | 0067ea03bc45bcc089b220c4df651ee8ccd947ac /src/ephy-location-action.c | |
parent | 08f119db46c4de4d5d52f40563f427f830783f7e (diff) | |
download | gsoc2013-epiphany-c3463bf64ddd607326384f6134fc38b9710887b8.tar.gz gsoc2013-epiphany-c3463bf64ddd607326384f6134fc38b9710887b8.tar.zst gsoc2013-epiphany-c3463bf64ddd607326384f6134fc38b9710887b8.zip |
Make the order in which we name the cols consistent.
Just a minor reordering of *_col variables, no code changed.
svn path=/trunk/; revision=8414
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 2f9c8b2cb..5121a631d 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -504,9 +504,9 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) EPHY_COMPLETION_ACTION_COL, EPHY_COMPLETION_KEYWORDS_COL, EPHY_COMPLETION_RELEVANCE_COL, + EPHY_COMPLETION_URL_COL, EPHY_COMPLETION_EXTRA_COL, - EPHY_COMPLETION_FAVICON_COL, - EPHY_COMPLETION_URL_COL); + EPHY_COMPLETION_FAVICON_COL); ephy_location_entry_set_completion_func (EPHY_LOCATION_ENTRY (proxy), completion_func, |