diff options
author | Christian Persch <chpe@svn.gnome.org> | 2007-01-29 04:34:05 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-01-29 04:34:05 +0800 |
commit | 85151b3f7a707ce606659750f66c1dcc73689fc9 (patch) | |
tree | dd8027c3b21319b650c0331c808e51e650479d39 /src | |
parent | b78dc365fa09e15f41357d177b02ae903ebabaa8 (diff) | |
download | gsoc2013-epiphany-85151b3f7a707ce606659750f66c1dcc73689fc9.tar.gz gsoc2013-epiphany-85151b3f7a707ce606659750f66c1dcc73689fc9.tar.zst gsoc2013-epiphany-85151b3f7a707ce606659750f66c1dcc73689fc9.zip |
Make this a regular check, not g_return_if_fail.
2007-01-28 Christian Persch <chpe@svn.gnome.org>
* src/ephy-tabs-menu.c: (sync_active_tab):
Make this a regular check, not g_return_if_fail.
svn path=/trunk/; revision=6866
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-tabs-menu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ephy-tabs-menu.c b/src/ephy-tabs-menu.c index 804235cc7..0ae78b49e 100644 --- a/src/ephy-tabs-menu.c +++ b/src/ephy-tabs-menu.c @@ -240,11 +240,9 @@ sync_active_tab (EphyWindow *window, GtkAction *action; tab = ephy_window_get_active_tab (window); + if (tab == NULL) return; LOG ("active tab is tab %p", tab); - - g_return_if_fail (tab != NULL); - if (tab == NULL) return; action = g_object_get_data (G_OBJECT (tab), DATA_KEY); /* happens initially, since the ::active-tab comes before |