diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-05-01 19:57:53 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-05-01 19:57:53 +0800 |
commit | 39f5d7e6613743c8fced3913f02b7d84b90e0912 (patch) | |
tree | b169f94d5a36951d89cb879133d554f11d1950a9 | |
parent | d4fcab3e7bf87dd8cd683b40adf4c803c2fd612f (diff) | |
download | gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar.gz gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar.bz2 gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar.lz gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar.xz gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.tar.zst gsoc2013-evolution-39f5d7e6613743c8fced3913f02b7d84b90e0912.zip |
Doh, also unref the pas_book_factory when we are done.
2000-05-01 Federico Mena Quintero <federico@helixcode.com>
* wombat.c (main): Doh, also unref the pas_book_factory when we
are done.
svn path=/trunk/; revision=2710
-rw-r--r-- | wombat/ChangeLog | 5 | ||||
-rw-r--r-- | wombat/wombat.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog index a0dca9964c..f491f64612 100644 --- a/wombat/ChangeLog +++ b/wombat/ChangeLog @@ -1,3 +1,8 @@ +2000-05-01 Federico Mena Quintero <federico@helixcode.com> + + * wombat.c (main): Doh, also unref the pas_book_factory when we + are done. + 2000-04-30 Federico Mena Quintero <federico@helixcode.com> * wombat.c (setup_pas): Connect to the "last_book_gone" signal of diff --git a/wombat/wombat.c b/wombat/wombat.c index af94783fd0..5d582de6be 100644 --- a/wombat/wombat.c +++ b/wombat/wombat.c @@ -273,5 +273,8 @@ main (int argc, char **argv) bonobo_object_unref (BONOBO_OBJECT (cal_factory)); cal_factory = NULL; + bonobo_object_unref (BONOBO_OBJECT (pas_book_factory)); + pas_book_factory = NULL; + return 0; } |