summaryrefslogtreecommitdiff
path: root/panels/search/cc-search-panel.c
diff options
context:
space:
mode:
Diffstat (limited to 'panels/search/cc-search-panel.c')
-rw-r--r--panels/search/cc-search-panel.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/panels/search/cc-search-panel.c b/panels/search/cc-search-panel.c
index fc010bbbd..97dd8a521 100644
--- a/panels/search/cc-search-panel.c
+++ b/panels/search/cc-search-panel.c
@@ -55,7 +55,7 @@ list_sort_func (gconstpointer a,
GtkWidget *widget_a, *widget_b;
GAppInfo *app_a, *app_b;
const gchar *id_a, *id_b;
- gint idx_a, idx_b, num_sorted;
+ gint idx_a, idx_b;
gpointer lookup;
widget_a = GTK_WIDGET (a);
@@ -83,17 +83,6 @@ list_sort_func (gconstpointer a,
if ((idx_a == -1) && (idx_b == -1))
return g_utf8_collate (g_app_info_get_name (app_a), g_app_info_get_name (app_b));
- num_sorted = g_hash_table_size (self->priv->sort_order) - 1;
- if (num_sorted > 1)
- {
- /* if app_a is the last, it goes after everything */
- if (idx_a == num_sorted)
- return 1;
- /* if app_b is the last, it goes after everything */
- else if (idx_b == num_sorted)
- return -1;
- }
-
/* if app_a isn't found, it's sorted after app_b */
if (idx_a == -1)
return 1;