diff options
Diffstat (limited to 'src/plugins/fs/meta.c')
-rw-r--r-- | src/plugins/fs/meta.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/fs/meta.c b/src/plugins/fs/meta.c index e7b28b68..c1665251 100644 --- a/src/plugins/fs/meta.c +++ b/src/plugins/fs/meta.c | |||
@@ -330,7 +330,7 @@ void handleListRemove(GladeXML * xml, | |||
330 | ggc_tree_selection_selected_foreach | 330 | ggc_tree_selection_selected_foreach |
331 | (gtk_tree_view_get_selection(GTK_TREE_VIEW(list)), | 331 | (gtk_tree_view_get_selection(GTK_TREE_VIEW(list)), |
332 | &removeRow, | 332 | &removeRow, |
333 | NULL); | 333 | NULL); |
334 | } | 334 | } |
335 | 335 | ||
336 | #define THUMBSIZE 128 | 336 | #define THUMBSIZE 128 |
@@ -385,7 +385,7 @@ struct ECRS_MetaData * getMetaDataFromList(GladeXML * xml, | |||
385 | return meta; | 385 | return meta; |
386 | height = gdk_pixbuf_get_height(pixbuf); | 386 | height = gdk_pixbuf_get_height(pixbuf); |
387 | width = gdk_pixbuf_get_width(pixbuf); | 387 | width = gdk_pixbuf_get_width(pixbuf); |
388 | if ( (height > THUMBSIZE) || | 388 | if ( (height > THUMBSIZE) || |
389 | (width > THUMBSIZE) ) { | 389 | (width > THUMBSIZE) ) { |
390 | if (height > THUMBSIZE) { | 390 | if (height > THUMBSIZE) { |
391 | width = width * THUMBSIZE / height; | 391 | width = width * THUMBSIZE / height; |
@@ -622,7 +622,7 @@ const char * getEntryLineValue(GladeXML * xml, | |||
622 | const char * widgetName) { | 622 | const char * widgetName) { |
623 | GtkBin * line; | 623 | GtkBin * line; |
624 | GtkEntry * entry; | 624 | GtkEntry * entry; |
625 | 625 | ||
626 | line = GTK_BIN(glade_xml_get_widget(xml, | 626 | line = GTK_BIN(glade_xml_get_widget(xml, |
627 | widgetName)); | 627 | widgetName)); |
628 | entry = GTK_ENTRY(gtk_bin_get_child(line)); | 628 | entry = GTK_ENTRY(gtk_bin_get_child(line)); |