diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-26 06:11:29 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-26 06:11:29 +0800 |
commit | c76e6322cf850d3e7a909ae1353bdde8b2911cac (patch) | |
tree | 90a9ce3cfc903297eae6bb1e053838a2d536da3a /my-evolution/e-summary-preferences.c | |
parent | 19e03042e024e2e62acd69aa7005f1dfa9011754 (diff) | |
download | gsoc2013-evolution-c76e6322cf850d3e7a909ae1353bdde8b2911cac.tar.gz gsoc2013-evolution-c76e6322cf850d3e7a909ae1353bdde8b2911cac.tar.zst gsoc2013-evolution-c76e6322cf850d3e7a909ae1353bdde8b2911cac.zip |
Warnings Create an image cache USe task.png
Warnings
Create an image cache
USe task.png
svn path=/trunk/; revision=13128
Diffstat (limited to 'my-evolution/e-summary-preferences.c')
-rw-r--r-- | my-evolution/e-summary-preferences.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index e1832d20f7..708221fd6c 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -1407,9 +1407,11 @@ property_box_destroy_cb (GtkObject *object, } void -e_summary_configure (GtkWidget *widget, - ESummary *summary) +e_summary_configure (BonoboUIComponent *component, + gpointer userdata, + const char *cname) { + ESummary *summary = userdata; PropertyData *pd; if (summary->prefs_window != NULL) { @@ -1433,7 +1435,7 @@ e_summary_configure (GtkWidget *widget, g_return_if_fail (pd->xml != NULL); pd->box = GNOME_PROPERTY_BOX (glade_xml_get_widget (pd->xml, "dialog1")); - summary->prefs_window = pd->box; + summary->prefs_window = GTK_WIDGET (pd->box); gtk_window_set_title (GTK_WINDOW (pd->box), _("Summary Settings")); if (make_property_dialog (pd) == FALSE) { |