diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-03-19 21:25:33 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-03-19 21:25:33 +0800 |
commit | 84e13e55846950db7a5ab1debebdf9e3fd977343 (patch) | |
tree | 70929a45e6c411730f4c2c40a0432e398768966b /my-evolution/e-summary-factory.c | |
parent | 02b379173a834e87d0db9ba141e725f26c1ed1cb (diff) | |
download | gsoc2013-evolution-84e13e55846950db7a5ab1debebdf9e3fd977343.tar.gz gsoc2013-evolution-84e13e55846950db7a5ab1debebdf9e3fd977343.tar.zst gsoc2013-evolution-84e13e55846950db7a5ab1debebdf9e3fd977343.zip |
Move the preferences from a per-view setting to a global setting
svn path=/trunk/; revision=16205
Diffstat (limited to 'my-evolution/e-summary-factory.c')
-rw-r--r-- | my-evolution/e-summary-factory.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/my-evolution/e-summary-factory.c b/my-evolution/e-summary-factory.c index cdf813aaf7..bda75452ab 100644 --- a/my-evolution/e-summary-factory.c +++ b/my-evolution/e-summary-factory.c @@ -126,12 +126,13 @@ control_destroy_cb (BonoboControl *control, BonoboControl * e_summary_factory_new_control (const char *uri, const GNOME_Evolution_Shell shell, - ESummaryOfflineHandler *handler) + ESummaryOfflineHandler *handler, + ESummaryPrefs *global_preferences) { BonoboControl *control; GtkWidget *summary; - summary = e_summary_new (shell); + summary = e_summary_new (shell, global_preferences); if (summary == NULL) { return NULL; } |