forked from AuroraMiddleware/gtk
Consistently use the same error when removing a URI from an empty
2008-06-17 Emmanuele Bassi <ebassi@gnome.org> * gtk/gtkrecentmanager.c: (gtk_recent_manager_remove_item): Consistently use the same error when removing a URI from an empty GtkRecentManager. svn path=/trunk/; revision=20422
This commit is contained in:
parent
40b6173aa3
commit
88c469420d
@ -1,3 +1,9 @@
|
||||
2008-06-17 Emmanuele Bassi <ebassi@gnome.org>
|
||||
|
||||
* gtk/gtkrecentmanager.c:
|
||||
(gtk_recent_manager_remove_item): Consistently use the same
|
||||
error when removing a URI from an empty GtkRecentManager.
|
||||
|
||||
2008-06-17 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c: remove static integer variables
|
||||
|
@ -1007,9 +1007,9 @@ gtk_recent_manager_remove_item (GtkRecentManager *manager,
|
||||
priv->recent_items = g_bookmark_file_new ();
|
||||
priv->size = 0;
|
||||
|
||||
g_set_error (error, GTK_RECENT_MANAGER_ERROR,
|
||||
GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
|
||||
_("Unable to find an item with URI '%s'"),
|
||||
g_set_error (error, G_BOOKMARK_FILE_ERROR,
|
||||
G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND,
|
||||
_("No bookmark found for URI '%s'"),
|
||||
uri);
|
||||
|
||||
return FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user