diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-07-18 23:39:26 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-07-18 23:39:26 +0000 |
commit | 4e2b60ac4d32c5bef5b192a12a59f8c2a3124f81 (patch) | |
tree | 63b0cecda2350e250c3a1de4a53f43befab1b076 /gtk/gtkhpaned.c | |
parent | b613a74cb20a480f9d95579243278660af300cee (diff) | |
download | gdk-pixbuf-4e2b60ac4d32c5bef5b192a12a59f8c2a3124f81.tar.gz |
Patch from Matthias Clasen to remove remove all instances of
Wed Jul 18 19:28:46 2001 Owen Taylor <otaylor@redhat.com>
* gtk/*.c: Patch from Matthias Clasen to remove remove
all instances of g_return_if_fail (foo != NULL); that are
immediately before a g_return_if_fail (GTK_IS_FOO (foo));
since the second check catches the NULL anyways.
Diffstat (limited to 'gtk/gtkhpaned.c')
-rw-r--r-- | gtk/gtkhpaned.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkhpaned.c b/gtk/gtkhpaned.c index 8bdf6a70b..d59255ea2 100644 --- a/gtk/gtkhpaned.c +++ b/gtk/gtkhpaned.c @@ -91,7 +91,6 @@ gtk_hpaned_init (GtkHPaned *hpaned) { GtkPaned *paned; - g_return_if_fail (hpaned != NULL); g_return_if_fail (GTK_IS_PANED (hpaned)); paned = GTK_PANED (hpaned); @@ -248,7 +247,6 @@ gtk_hpaned_expose (GtkWidget *widget, GtkPaned *paned; guint16 border_width; - g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (GTK_IS_PANED (widget), FALSE); if (GTK_WIDGET_VISIBLE (widget) && GTK_WIDGET_MAPPED (widget)) |