diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-06-18 05:14:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-06-18 05:14:27 +0800 |
commit | 593e026cf2d2f1e5671f7ecb58330f4c5ab1ba99 (patch) | |
tree | 2bfa522159419049dd941747b87f4d8f64663f51 /src/prefs-dialog.c | |
parent | 38d792d73126d14cb461560f9efc2d957a089ec9 (diff) | |
download | gsoc2013-epiphany-593e026cf2d2f1e5671f7ecb58330f4c5ab1ba99.tar.gz gsoc2013-epiphany-593e026cf2d2f1e5671f7ecb58330f4c5ab1ba99.tar.zst gsoc2013-epiphany-593e026cf2d2f1e5671f7ecb58330f4c5ab1ba99.zip |
Fix wrong cast of GtkDialog to GtkWindow.
2003-06-17 Christian Persch <chpe@cvs.gnome.org>
* src/prefs-dialog.c:
Fix wrong cast of GtkDialog to GtkWindow.
* data/glade/epiphany.glade:
* src/pdm-dialog.c: (pdm_dialog_show_help), (pdm_dialog_response_cb):
Implement help button for pdm dialogue.
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r-- | src/prefs-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 48a5dc5cd..7b982e96f 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -414,7 +414,7 @@ prefs_dialog_show_help (PrefsDialog *pd) id = gtk_notebook_get_current_page (GTK_NOTEBOOK (pd->priv->notebook)); - ephy_gui_help (GTK_WINDOW (pd), "epiphany", help_preferences[id]); + ephy_gui_help (GTK_WINDOW (pd->priv->window), "epiphany", help_preferences[id]); } static const gchar * |