aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-04-03 06:33:03 +0800
committerChristian Persch <chpe@src.gnome.org>2004-04-03 06:33:03 +0800
commit59134196b20a2cc31c70f3082c612c7c25187a14 (patch)
tree485d4415da701a64b9d99f014cddca94fa2bc076
parent1ce9116fe0e3d1568634135867e4ffa9143662ac (diff)
downloadgsoc2013-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.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-notebook.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0426ceac2..894cb0708 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-03 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/ephy-notebook.c: (notebook_drag_data_received_cb):
+
+ Remove stray semicolon. Fixes bug #138902.
+
2004-04-01 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.c: (ephy_embed_chrome_get_type):
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));