forked from AuroraMiddleware/gtk
s/nonexistant/nonexistent Likewise. Likewise. Likewise.
2003-09-02 Federico Mena Quintero <federico@ximian.com> * gtkfilesystem.h: s/nonexistant/nonexistent * gtkfilesystem.c: Likewise. * gtkfilesystemgnomevfs.c: Likewise. * gtkfilesystemunix.c: Likewise. 2003-08-27 Federico Mena Quintero <federico@ximian.com> * README: The required GtkTreeView patches are already on CVS. Removed the part that mentions them.
This commit is contained in:
parent
4a32a34717
commit
cc4836c90b
@ -559,7 +559,7 @@ gtk_file_system_make_path (GtkFileSystem *file_system,
|
||||
*
|
||||
* If parsing fails because a path was encountered that doesn't
|
||||
* exist on the filesystem, then an error of type
|
||||
* %GTK_FILE_SYSTEM_ERROR_NONEXISTANT will be set in @error
|
||||
* %GTK_FILE_SYSTEM_ERROR_NONEXISTENT will be set in @error
|
||||
* and %FALSE returned. (This only applies to parsing relative paths,
|
||||
* not to interpretation of @file_part. No check is made as
|
||||
* to whether @file_part exists.)
|
||||
|
@ -70,7 +70,7 @@ typedef enum {
|
||||
|
||||
typedef enum
|
||||
{
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTANT,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTENT,
|
||||
GTK_FILE_SYSTEM_ERROR_NOT_FOLDER,
|
||||
GTK_FILE_SYSTEM_ERROR_INVALID_URI,
|
||||
GTK_FILE_SYSTEM_ERROR_BAD_FILENAME,
|
||||
|
@ -282,7 +282,7 @@ gtk_file_system_unix_create_folder (GtkFileSystem *file_system,
|
||||
gchar *filename_utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
|
||||
g_set_error (error,
|
||||
GTK_FILE_SYSTEM_ERROR,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTANT,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTENT,
|
||||
"error creating directory '%s': %s",
|
||||
filename_utf8 ? filename_utf8 : "???",
|
||||
g_strerror (errno));
|
||||
@ -645,7 +645,7 @@ gtk_file_folder_unix_list_children (GtkFileFolder *folder,
|
||||
{
|
||||
g_set_error (error,
|
||||
GTK_FILE_SYSTEM_ERROR,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTANT,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTENT,
|
||||
"%s",
|
||||
tmp_error->message);
|
||||
|
||||
@ -691,7 +691,7 @@ filename_get_info (const gchar *filename,
|
||||
gchar *filename_utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
|
||||
g_set_error (error,
|
||||
GTK_FILE_SYSTEM_ERROR,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTANT,
|
||||
GTK_FILE_SYSTEM_ERROR_NONEXISTENT,
|
||||
"error getting information for '%s': %s",
|
||||
filename_utf8 ? filename_utf8 : "???",
|
||||
g_strerror (errno));
|
||||
|
Loading…
Reference in New Issue
Block a user