diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/EphySidebar.cpp | 3 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2005-01-24 Crispin Flowerday <gnome@flowerday.cx> + + * embed/mozilla/EphySidebar.cpp (AddPanel): + + Fix the g_signal_emit to pass an argument for the result, + otherwise things break. + 2005-01-24 Christian Persch,,, <chpe@cvs.gnome.org> * data/default-prefs-common.js: diff --git a/embed/mozilla/EphySidebar.cpp b/embed/mozilla/EphySidebar.cpp index 9b2ea9cda..ff98e29e6 100644 --- a/embed/mozilla/EphySidebar.cpp +++ b/embed/mozilla/EphySidebar.cpp @@ -64,8 +64,9 @@ EphySidebar::AddPanel (const PRUnichar *aTitle, single = EPHY_EMBED_SINGLE (ephy_embed_shell_get_embed_single (embed_shell)); + gboolean result = FALSE; g_signal_emit_by_name (single, "add-sidebar", - aContentURL, title.get()); + aContentURL, title.get(), &result); return NS_OK; } |