diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/toolbar.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-06-10 Marco Pesenti Gritti <marco@it.gnome.org> + + * src/toolbar.c: (toolbar_set_location): + + Clear the location on NULL + 2003-06-09 Christian Persch <chpe@cvs.gnome.org> * src/ephy-notebook.c: (ephy_notebook_set_page_title): diff --git a/src/toolbar.c b/src/toolbar.c index be3273e11..1601953cd 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -628,7 +628,8 @@ toolbar_set_location (Toolbar *t, g_return_if_fail (location != NULL); ephy_location_entry_set_location - (EPHY_LOCATION_ENTRY (location), alocation); + (EPHY_LOCATION_ENTRY (location), + alocation ? alocation : ""); } void |