summaryrefslogtreecommitdiff
path: root/gtk/gtkpathbar.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-06-13 16:47:41 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-06-13 16:47:41 +0000
commitf9c7a4bbd08b65f9c5280836ea3f343efec2c82a (patch)
tree690216e8e7d52c2635e24d802b484e4d09b5aac1 /gtk/gtkpathbar.c
parent8845b9f01b072c96bd339c17d42f35e6fb1f5ae1 (diff)
downloadgtk+-f9c7a4bbd08b65f9c5280836ea3f343efec2c82a.tar.gz
Really make GtkFileSystem private by _-prefixing all functions.
* gtk/gtkfilechooserbutton.c: * gtk/gtkfilechooserdefault.c: * gtk/gtkfilechooserentry.c: * gtk/gtkfilesystem.c: * gtk/gtkfilesystem.h: * gtk/gtkfilesystemmodel.c: * gtk/gtkpathbar.c: Really make GtkFileSystem private by _-prefixing all functions. svn path=/trunk/; revision=20378
Diffstat (limited to 'gtk/gtkpathbar.c')
-rw-r--r--gtk/gtkpathbar.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c
index 62e8a857ed..951ca62527 100644
--- a/gtk/gtkpathbar.c
+++ b/gtk/gtkpathbar.c
@@ -1202,8 +1202,8 @@ set_button_image_get_info_cb (GCancellable *cancellable,
if (cancelled || error)
goto out;
- pixbuf = gtk_file_info_render_icon (info, GTK_WIDGET (data->path_bar),
- data->path_bar->icon_size);
+ pixbuf = _gtk_file_info_render_icon (info, GTK_WIDGET (data->path_bar),
+ data->path_bar->icon_size);
gtk_image_set_from_pixbuf (GTK_IMAGE (data->button_data->image), pixbuf);
switch (data->button_data->type)
@@ -1248,15 +1248,15 @@ set_button_image (GtkPathBar *path_bar,
break;
}
- volume = gtk_file_system_get_volume_for_file (path_bar->file_system, path_bar->root_file);
+ volume = _gtk_file_system_get_volume_for_file (path_bar->file_system, path_bar->root_file);
if (volume == NULL)
return;
- path_bar->root_icon = gtk_file_system_volume_render_icon (volume,
- GTK_WIDGET (path_bar),
- path_bar->icon_size,
- NULL);
- gtk_file_system_volume_free (volume);
+ path_bar->root_icon = _gtk_file_system_volume_render_icon (volume,
+ GTK_WIDGET (path_bar),
+ path_bar->icon_size,
+ NULL);
+ _gtk_file_system_volume_free (volume);
gtk_image_set_from_pixbuf (GTK_IMAGE (button_data->image), path_bar->root_icon);
break;
@@ -1276,11 +1276,11 @@ set_button_image (GtkPathBar *path_bar,
g_cancellable_cancel (button_data->cancellable);
button_data->cancellable =
- gtk_file_system_get_info (path_bar->file_system,
- path_bar->home_file,
- "standard::icon",
- set_button_image_get_info_cb,
- data);
+ _gtk_file_system_get_info (path_bar->file_system,
+ path_bar->home_file,
+ "standard::icon",
+ set_button_image_get_info_cb,
+ data);
break;
case DESKTOP_BUTTON:
@@ -1298,11 +1298,11 @@ set_button_image (GtkPathBar *path_bar,
g_cancellable_cancel (button_data->cancellable);
button_data->cancellable =
- gtk_file_system_get_info (path_bar->file_system,
- path_bar->desktop_file,
- "standard::icon",
- set_button_image_get_info_cb,
- data);
+ _gtk_file_system_get_info (path_bar->file_system,
+ path_bar->desktop_file,
+ "standard::icon",
+ set_button_image_get_info_cb,
+ data);
break;
default:
break;
@@ -1681,11 +1681,11 @@ gtk_path_bar_get_info_callback (GCancellable *cancellable,
file_info->parent_file = g_file_get_parent (file_info->file);
file_info->path_bar->get_info_cancellable =
- gtk_file_system_get_info (file_info->path_bar->file_system,
- file_info->file,
- "standard::display-name,standard::is-hidden",
- gtk_path_bar_get_info_callback,
- file_info);
+ _gtk_file_system_get_info (file_info->path_bar->file_system,
+ file_info->file,
+ "standard::display-name,standard::is-hidden",
+ gtk_path_bar_get_info_callback,
+ file_info);
}
gboolean
@@ -1719,11 +1719,11 @@ _gtk_path_bar_set_file (GtkPathBar *path_bar,
g_cancellable_cancel (path_bar->get_info_cancellable);
path_bar->get_info_cancellable =
- gtk_file_system_get_info (path_bar->file_system,
- info->file,
- "standard::display-name,standard::is-hidden",
- gtk_path_bar_get_info_callback,
- info);
+ _gtk_file_system_get_info (path_bar->file_system,
+ info->file,
+ "standard::display-name,standard::is-hidden",
+ gtk_path_bar_get_info_callback,
+ info);
return TRUE;
}