[gtk+/filechooserentry: 48/51] filechooserentry: Remove the file column



commit 89f215ca705ccd5ee14b6fcecc96e9a4e02cb225
Author: Benjamin Otte <otte redhat com>
Date:   Mon Nov 7 04:30:04 2011 +0100

    filechooserentry: Remove the file column
    
    It is not needed anymore.

 gtk/gtkfilechooserentry.c |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c
index d8dd77d..44cd1b2 100644
--- a/gtk/gtkfilechooserentry.c
+++ b/gtk/gtkfilechooserentry.c
@@ -75,7 +75,6 @@ enum
 {
   DISPLAY_NAME_COLUMN,
   FULL_PATH_COLUMN,
-  FILE_COLUMN,
   N_COLUMNS
 };
 
@@ -535,9 +534,6 @@ completion_store_set (GtkFileSystemModel  *model,
 
   switch (column)
     {
-    case FILE_COLUMN:
-      g_value_set_object (value, file);
-      break;
     case FULL_PATH_COLUMN:
       prefix = chooser_entry->dir_part;
       /* fall through */
@@ -570,8 +566,7 @@ populate_completion_store (GtkFileChooserEntry *chooser_entry)
                                                 chooser_entry,
                                                 N_COLUMNS,
                                                 G_TYPE_STRING,
-                                                G_TYPE_STRING,
-                                                G_TYPE_FILE));
+                                                G_TYPE_STRING));
   g_signal_connect (chooser_entry->completion_store, "finished-loading",
 		    G_CALLBACK (finished_loading_cb), chooser_entry);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]