aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-notebook.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c69b6547..1a8bbfc4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2007-07-10 Christian Persch <chpe@gnome.org>
+ * src/ephy-notebook.c: (sync_label):
+
+ Remove NULL-check here.
+
+2007-07-10 Christian Persch <chpe@gnome.org>
+
* src/bookmarks/ephy-bookmark-action.c: (query_tooltip_cb),
(connect_proxy), (ephy_bookmark_action_updated),
(ephy_bookmark_action_class_init):
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 027877e5b..90a6dd8fe 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -567,8 +567,6 @@ sync_label (EphyTab *tab, GParamSpec *pspec, GtkWidget *label)
const char *title;
title = ephy_tab_get_title (tab);
- if (!title)
- return;
gtk_label_set_text (GTK_LABEL (label), title);