diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-16 06:13:52 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-16 06:13:52 +0800 |
commit | a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4 (patch) | |
tree | d5ca0296231f54bd117f2af90f40e08e535d6721 /addressbook/gui/component/addressbook-component.c | |
parent | a0e079bb116d721bbeb6931d4664cd1943c16309 (diff) | |
download | gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar.gz gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar.bz2 gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar.lz gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar.xz gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.tar.zst gsoc2013-evolution-a47eb7a9a182c9d124fa8c98c852b0bdcfa245f4.zip |
Added rule to generate GNOME_Evolution_Addressbook.server.in from
* gui/component/Makefile.am: Added rule to generate
GNOME_Evolution_Addressbook.server.in from
GNOME_Evolution_Addressbook.server.in.in, substituting
@LIBEXECDIR@.
* GNOME_Evolution_Addressbook.server.in.in: Renamed from
GNOME_Evolution_Addressbook.server.in. Added @LIBEXECDIR@ before
the location of the executable.
* gui/component/select-names/select-names.glade: Ported to Glade
2.
* gui/component/select-names/recipient.glade: Ported to Glade 2.
svn path=/trunk/; revision=18794
Diffstat (limited to 'addressbook/gui/component/addressbook-component.c')
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index 044f613580..5773b5ba94 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -378,7 +378,7 @@ owner_set_cb (EvolutionShellComponent *shell_component, } static gboolean -gtk_main_quit_cb (gpointer closure) +bonobo_main_quit_cb (gpointer closure) { bonobo_main_quit (); return TRUE; @@ -391,7 +391,7 @@ owner_unset_cb (EvolutionShellComponent *shell_component, { owner_count --; if (owner_count == 0) { - g_idle_add (gtk_main_quit_cb, NULL); + g_idle_add (bonobo_main_quit_cb, NULL); } } |