diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-04-03 06:33:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-04-03 06:33:03 +0800 |
commit | 59134196b20a2cc31c70f3082c612c7c25187a14 (patch) | |
tree | 485d4415da701a64b9d99f014cddca94fa2bc076 /src | |
parent | 1ce9116fe0e3d1568634135867e4ffa9143662ac (diff) | |
download | gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar.gz gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar.bz2 gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar.lz gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar.xz gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.tar.zst gsoc2013-epiphany-59134196b20a2cc31c70f3082c612c7c25187a14.zip |
Remove stray semicolon. Fixes bug #138902.
2004-04-03 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (notebook_drag_data_received_cb):
Remove stray semicolon. Fixes bug #138902.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 277010e07..3e8689100 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -669,7 +669,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context, g_return_if_fail (EPHY_IS_WINDOW (toplevel)); window = EPHY_WINDOW (toplevel); - if (tab != NULL); + if (tab != NULL) { embed = ephy_tab_get_embed (tab); g_return_if_fail (EPHY_IS_EMBED (embed)); |