summaryrefslogtreecommitdiff
path: root/gtk/gtkfilesystemunix.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2003-10-20 20:17:35 +0000
committerFederico Mena Quintero <federico@src.gnome.org>2003-10-20 20:17:35 +0000
commit1e49d49a3eb67436519a64b4435855602d1ad3ad (patch)
tree552003f9f20700bfe97cedae9b261bcc96b437bb /gtk/gtkfilesystemunix.c
parent7c659465e2f01209d398d54524a6ad71f6495a09 (diff)
downloadgtk+-1e49d49a3eb67436519a64b4435855602d1ad3ad.tar.gz
New utility function. (gtk_file_system_gnome_vfs_get_folder): Use
2003-10-20 Federico Mena Quintero <federico@ximian.com> * gtkfilesystemgnomevfs.c (folder_child_new): New utility function. (gtk_file_system_gnome_vfs_get_folder): Use folder_child_new(). (gtk_file_folder_gnome_vfs_get_info): Likewise. (directory_load_callback): Likewise. (monitor_callback): Likewise. * TODO: Removed the item about factoring out the code that creates FolderChild structures.
Diffstat (limited to 'gtk/gtkfilesystemunix.c')
-rw-r--r--gtk/gtkfilesystemunix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkfilesystemunix.c b/gtk/gtkfilesystemunix.c
index 629337ee8a..ded5389ceb 100644
--- a/gtk/gtkfilesystemunix.c
+++ b/gtk/gtkfilesystemunix.c
@@ -548,6 +548,7 @@ gtk_file_system_unix_add_bookmark (GtkFileSystem *file_system,
const GtkFilePath *path,
GError **error)
{
+ /* FIXME: Implement as a really simple ~/.gtk-bookmarks */
g_set_error (error,
GTK_FILE_SYSTEM_ERROR,
GTK_FILE_SYSTEM_ERROR_FAILED,
@@ -560,6 +561,7 @@ gtk_file_system_unix_remove_bookmark (GtkFileSystem *file_system,
const GtkFilePath *path,
GError **error)
{
+ /* FIXME: Implement as a really simple ~/.gtk-bookmarks */
g_set_error (error,
GTK_FILE_SYSTEM_ERROR,
GTK_FILE_SYSTEM_ERROR_FAILED,
@@ -570,6 +572,7 @@ gtk_file_system_unix_remove_bookmark (GtkFileSystem *file_system,
static GSList *
gtk_file_system_unix_list_bookmarks (GtkFileSystem *file_system)
{
+ /* FIXME: Implement as a really simple ~/.gtk-bookmarks */
return NULL;
}