Diff of /trunk/src/main.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 142 by harbaum, Mon Oct 26 10:40:06 2009 UTC revision 143 by harbaum, Mon Oct 26 19:55:00 2009 UTC
# Line 921  static GtkWidget *gpxlist_create_view_an Line 921  static GtkWidget *gpxlist_create_view_an
921    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
922                    -1, "Icon", renderer,                    -1, "Icon", renderer,
923                    "pixbuf", GPXLIST_COL_ICON,                    "pixbuf", GPXLIST_COL_ICON,
924                //                  "sensitive", GPXLIST_COL_OPEN,  #ifdef USE_PANNABLE_AREA
925            /* at least one entry needs to be sensitive. */
926            /* This is the delete icon if the PANNABLE_AREA is used */
927                      "sensitive", GPXLIST_COL_OPEN,
928    #endif
929                    NULL);                    NULL);
930    
931    /* --- "FileName" column --- */    /* --- "FileName" column --- */
# Line 977  static GtkWidget *gpxlist_create_view_an Line 981  static GtkWidget *gpxlist_create_view_an
981    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
982                    -1, "Del", renderer,                    -1, "Del", renderer,
983                    "pixbuf", GPXLIST_COL_DELETE,                    "pixbuf", GPXLIST_COL_DELETE,
984                    "sensitive", GPXLIST_COL_OPEN,                //                  "sensitive", GPXLIST_COL_OPEN,
985                    NULL);                    NULL);
986  #endif  #endif
987    

Legend:
Removed from v.142  
changed lines
  Added in v.143