diff options
author | Ted Gould <ted@gould.cx> | 2010-03-24 20:33:50 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-24 20:33:50 -0500 |
commit | e082f944179d142b643c65004de52f1983698ff9 (patch) | |
tree | d1480be693b8b321aac2e3e1c8850c32f03d7eb2 | |
parent | 9d667c37212143addd60bb99b6c53c98943a05ae (diff) | |
download | ayatana-indicator-messages-e082f944179d142b643c65004de52f1983698ff9.tar.gz ayatana-indicator-messages-e082f944179d142b643c65004de52f1983698ff9.tar.bz2 ayatana-indicator-messages-e082f944179d142b643c65004de52f1983698ff9.zip |
Building the seen db on init
-rw-r--r-- | src/messages-service.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/messages-service.c b/src/messages-service.c index 0ebab0b..bc3e9e8 100644 --- a/src/messages-service.c +++ b/src/messages-service.c @@ -39,6 +39,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "dbus-data.h" #include "dirs.h" #include "messages-service-dbus.h" +#include "seen-db.h" static IndicateListener * listener; static GList * serverList = NULL; @@ -1422,6 +1423,8 @@ main (int argc, char ** argv) bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); textdomain (GETTEXT_PACKAGE); + seen_db_init(); + dbus_interface = message_service_dbus_new(); listener = indicate_listener_ref_default(); |