summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserbutton.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-06-17 12:02:44 +0000
committerXan Lopez <xan@src.gnome.org>2007-06-17 12:02:44 +0000
commit960b4fcd39a00a029c8b388a05a0c56fc3bb82fe (patch)
tree486e29c1ac34bb5532891ce995b829bfba243f83 /gtk/gtkfilechooserbutton.c
parentee0411ae721ebb47c848005479bed0051132a1b9 (diff)
downloadgtk+-960b4fcd39a00a029c8b388a05a0c56fc3bb82fe.tar.gz
Remove extra braces.
svn path=/trunk/; revision=18174
Diffstat (limited to 'gtk/gtkfilechooserbutton.c')
-rw-r--r--gtk/gtkfilechooserbutton.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c
index c8bb2d8ad5..d74a486d1b 100644
--- a/gtk/gtkfilechooserbutton.c
+++ b/gtk/gtkfilechooserbutton.c
@@ -2005,16 +2005,12 @@ model_update_current_folder (GtkFileChooserButton *button,
icon_theme = gtk_icon_theme_get_for_screen (gtk_widget_get_screen (GTK_WIDGET (button)));
if (gtk_file_system_path_is_local (button->priv->fs, path))
- {
pixbuf = gtk_icon_theme_load_icon (icon_theme, "gnome-fs-directory",
button->priv->icon_size, 0, NULL);
- }
else
- {
pixbuf = gtk_icon_theme_load_icon (icon_theme, "gnome-fs-share",
button->priv->icon_size, 0, NULL);
- }
-
+
gtk_list_store_set (store, &iter,
ICON_COLUMN, pixbuf,
DISPLAY_NAME_COLUMN, label,