Remove extra braces.

svn path=/trunk/; revision=18174
This commit is contained in:
Xan Lopez 2007-06-17 12:02:44 +00:00
parent ee0411ae72
commit 960b4fcd39

View File

@ -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,