diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-01-25 05:46:25 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-01-25 05:46:25 +0800 |
commit | 79335bd6261dba80338eeefdf8e563ec350db501 (patch) | |
tree | 5b759edb4644d5f13081959db5802e185ca3a3ce | |
parent | bc7484e902d2d363cd9238b53d62d9e6cbec7f85 (diff) | |
download | gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar.gz gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar.bz2 gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar.lz gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar.xz gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.tar.zst gsoc2013-epiphany-79335bd6261dba80338eeefdf8e563ec350db501.zip |
Fix the g_signal_emit to pass an argument for the result, otherwise things
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.
-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; } |