diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-05-05 01:43:46 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-05-29 10:54:12 +0800 |
commit | 2835d6bd8ebc90d9e60bc7e62f94eb851f8d358f (patch) | |
tree | 8f04e79572f7cd997b61c6bfbb597c8e53e6d5c1 /src/ephy-location-action.c | |
parent | b480a0bdebd3ad61f79c2bd24f88fba0cde1a9fa (diff) | |
download | gsoc2013-epiphany-2835d6bd8ebc90d9e60bc7e62f94eb851f8d358f.tar.gz gsoc2013-epiphany-2835d6bd8ebc90d9e60bc7e62f94eb851f8d358f.tar.zst gsoc2013-epiphany-2835d6bd8ebc90d9e60bc7e62f94eb851f8d358f.zip |
ephy-location-action: don't request EXTRA_COL
EXTRA_COL is never used in the match_func.
Bug #616345
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 38bcb1d89..a5c336a71 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -101,7 +101,6 @@ match_func (GtkEntryCompletion *completion, char *item = NULL; char *url = NULL; char *keywords = NULL; - char *extra = NULL; gboolean ret = FALSE; GtkTreeModel *model; @@ -113,7 +112,6 @@ match_func (GtkEntryCompletion *completion, EPHY_COMPLETION_TEXT_COL, &item, EPHY_COMPLETION_URL_COL, &url, EPHY_COMPLETION_KEYWORDS_COL, &keywords, - EPHY_COMPLETION_EXTRA_COL, &extra, -1); if (!key) |