summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-11-12 15:13:20 -0500
committerCosimo Cecchi <cosimoc@gnome.org>2012-11-12 16:21:12 -0500
commitf22a95554a999ae074c4093b22255f8f04418ccf (patch)
tree3a1a9c57afc4384b45ac28ec6a22a82022cf3134
parentf32ca84a910a223368f4a29b5054c2e768a09297 (diff)
downloadnautilus-f22a95554a999ae074c4093b22255f8f04418ccf.tar.gz
query-editor: remove unused code
-rw-r--r--src/nautilus-query-editor.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/nautilus-query-editor.c b/src/nautilus-query-editor.c
index 1181c02ac..9a168d437 100644
--- a/src/nautilus-query-editor.c
+++ b/src/nautilus-query-editor.c
@@ -47,8 +47,6 @@ typedef struct {
GtkWidget *combo;
GtkWidget *type_widget;
-
- void *data;
} NautilusQueryEditorRow;
@@ -57,7 +55,6 @@ typedef struct {
GtkWidget * (*create_widgets) (NautilusQueryEditorRow *row);
void (*add_to_query) (NautilusQueryEditorRow *row,
NautilusQuery *query);
- void (*free_data) (NautilusQueryEditorRow *row);
void (*add_rows_from_query) (NautilusQueryEditor *editor,
NautilusQuery *query);
} NautilusQueryEditorRowOps;
@@ -66,14 +63,12 @@ struct NautilusQueryEditorDetails {
GtkWidget *entry;
gboolean change_frozen;
guint typing_timeout_id;
- gboolean is_visible;
GtkWidget *search_current_button;
GtkWidget *search_all_button;
char *current_uri;
GList *rows;
- char *last_set_query_text;
gboolean got_preedit;
};
@@ -97,7 +92,6 @@ static NautilusQueryEditorRow * nautilus_query_editor_add_row (NautilusQueryEdit
static GtkWidget *type_row_create_widgets (NautilusQueryEditorRow *row);
static void type_row_add_to_query (NautilusQueryEditorRow *row,
NautilusQuery *query);
-static void type_row_free_data (NautilusQueryEditorRow *row);
static void type_add_rows_from_query (NautilusQueryEditor *editor,
NautilusQuery *query);
@@ -107,7 +101,6 @@ static NautilusQueryEditorRowOps row_type[] = {
{ N_("File Type"),
type_row_create_widgets,
type_row_add_to_query,
- type_row_free_data,
type_add_rows_from_query
},
};
@@ -721,11 +714,6 @@ type_row_add_to_query (NautilusQueryEditorRow *row,
}
}
-static void
-type_row_free_data (NautilusQueryEditorRow *row)
-{
-}
-
static gboolean
all_group_types_in_list (char **group_types, GList *mime_types)
{
@@ -872,8 +860,6 @@ remove_row_cb (GtkButton *clicked_button, NautilusQueryEditorRow *row)
gtk_container_remove (GTK_CONTAINER (editor), row->toolbar);
editor->details->rows = g_list_remove (editor->details->rows, row);
-
- row_type[row->type].free_data (row);
g_free (row);
nautilus_query_editor_changed (editor);
@@ -901,9 +887,6 @@ row_type_combo_changed_cb (GtkComboBox *combo_box, NautilusQueryEditorRow *row)
row->type_widget = NULL;
}
- row_type[row->type].free_data (row);
- row->data = NULL;
-
row->type = type;
create_type_widgets (row);
@@ -1217,8 +1200,6 @@ nautilus_query_editor_set_query (NautilusQueryEditor *editor,
}
}
- g_free (editor->details->last_set_query_text);
- editor->details->last_set_query_text = text;
editor->details->change_frozen = FALSE;
}