diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-12-02 03:41:33 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-12-02 03:41:33 +0800 |
commit | 08d16c0891e9c89e81e4e7adf57d14c54c047d4f (patch) | |
tree | 40bb643663db055562dc29b4cbb2e4f1e29c8004 /src | |
parent | d8d264d7179f735b546fc0b7c6cf6fa0031a983b (diff) | |
download | gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar.gz gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar.bz2 gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar.lz gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar.xz gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.tar.zst gsoc2013-epiphany-08d16c0891e9c89e81e4e7adf57d14c54c047d4f.zip |
pass the shell to the callbacks as expected. Fix warnings.
2003-12-01 Marco Pesenti Gritti <marco@gnome.org>
* src/ephy-shell.c: (ephy_shell_get_history_window):
pass the shell to the callbacks as expected. Fix warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 62f12f860..abe7fb5bc 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -796,9 +796,9 @@ ephy_shell_get_history_window (EphyShell *gs) gs->priv->history_window = ephy_history_window_new (history); g_signal_connect (gs->priv->history_window, "show", - G_CALLBACK (toolwindow_show_cb), NULL); + G_CALLBACK (toolwindow_show_cb), gs); g_signal_connect (gs->priv->history_window, "hide", - G_CALLBACK (toolwindow_hide_cb), NULL); + G_CALLBACK (toolwindow_hide_cb), gs); } return gs->priv->history_window; |