forked from AuroraMiddleware/gtk
Use g_return_if_fail, not g_return_val_if_fail.
Tue Mar 22 14:16:31 2005 Manish Singh <yosh@gimp.org> * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): Use g_return_if_fail, not g_return_val_if_fail.
This commit is contained in:
parent
dce8bffc7d
commit
edc3b13575
@ -1,3 +1,8 @@
|
||||
Tue Mar 22 14:16:31 2005 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
|
||||
Use g_return_if_fail, not g_return_val_if_fail.
|
||||
|
||||
2005-03-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Implement bookmark renaming (#136216, Sean Middleditch)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Mar 22 14:16:31 2005 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
|
||||
Use g_return_if_fail, not g_return_val_if_fail.
|
||||
|
||||
2005-03-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Implement bookmark renaming (#136216, Sean Middleditch)
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Mar 22 14:16:31 2005 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
|
||||
Use g_return_if_fail, not g_return_val_if_fail.
|
||||
|
||||
2005-03-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Implement bookmark renaming (#136216, Sean Middleditch)
|
||||
|
@ -813,8 +813,8 @@ gtk_file_system_set_bookmark_label (GtkFileSystem *file_system,
|
||||
const GtkFilePath *path,
|
||||
const gchar *label)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_FILE_SYSTEM (file_system), NULL);
|
||||
g_return_val_if_fail (path != NULL, FALSE);
|
||||
g_return_if_fail (GTK_IS_FILE_SYSTEM (file_system));
|
||||
g_return_if_fail (path != NULL);
|
||||
|
||||
if (GTK_FILE_SYSTEM_GET_IFACE (file_system)->set_bookmark_label)
|
||||
GTK_FILE_SYSTEM_GET_IFACE (file_system)->set_bookmark_label (file_system,
|
||||
|
Loading…
Reference in New Issue
Block a user