From 538c11a68c3f5ff52399bda39c880cd8cf33761d Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Tue, 10 Jul 2007 18:13:48 +0000 Subject: Remove NULL-check here. 2007-07-10 Christian Persch * src/ephy-notebook.c: (sync_label): Remove NULL-check here. svn path=/trunk/; revision=7142 --- ChangeLog | 6 ++++++ src/ephy-notebook.c | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4c69b6547..1a8bbfc4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-10 Christian Persch + + * src/ephy-notebook.c: (sync_label): + + Remove NULL-check here. + 2007-07-10 Christian Persch * src/bookmarks/ephy-bookmark-action.c: (query_tooltip_cb), 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); -- cgit