diff options
author | Not Zed <NotZed@Ximian.com> | 2003-03-05 10:08:38 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-03-05 10:08:38 +0800 |
commit | e7c18148d0f4d7d68c819aadacfcd1056b1a7d00 (patch) | |
tree | 5e8c3dfd72fb126e8bef59c84aa8bd3268274803 /my-evolution | |
parent | 0ca271e142ff523df16ddaedee5979de720e8b56 (diff) | |
download | gsoc2013-evolution-e7c18148d0f4d7d68c819aadacfcd1056b1a7d00.tar.gz gsoc2013-evolution-e7c18148d0f4d7d68c819aadacfcd1056b1a7d00.tar.zst gsoc2013-evolution-e7c18148d0f4d7d68c819aadacfcd1056b1a7d00.zip |
dont call bonobo_main_quit anymore now we're shlib'ised.
2003-03-05 Not Zed <NotZed@Ximian.com>
* component-factory.c (owner_unset_cb): dont call bonobo_main_quit
anymore now we're shlib'ised.
svn path=/trunk/; revision=20165
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/component-factory.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 3480932408..c9cb446e6c 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,8 @@ +2003-03-05 Not Zed <NotZed@Ximian.com> + + * component-factory.c (owner_unset_cb): dont call bonobo_main_quit + anymore now we're shlib'ised. + 2003-02-28 Dan Winship <danw@ximian.com> * e-summary.c (e_summary_init): Don't need to use libalarm to set diff --git a/my-evolution/component-factory.c b/my-evolution/component-factory.c index 4ebd7001d8..a3b0a384ed 100644 --- a/my-evolution/component-factory.c +++ b/my-evolution/component-factory.c @@ -113,7 +113,7 @@ static void owner_unset_cb (EvolutionShellComponent *shell_component, gpointer user_data) { - bonobo_main_quit (); + /* noop */ } static BonoboObject * |