diff options
author | Ted Gould <ted@gould.cx> | 2010-03-25 10:50:13 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-25 10:50:13 -0500 |
commit | 272215246b7ddd8beb7ba622cef73e2c0c27ccfa (patch) | |
tree | 38cb6cb8f3cb919edb5cc39d7ac842335ea3b504 /src/messages-service.c | |
parent | 28d358c7b459ef636800f253c362819773b91850 (diff) | |
parent | 791ebdf697b50b6a54e4d7dc4e1524e7f6c30b12 (diff) | |
download | ayatana-indicator-messages-272215246b7ddd8beb7ba622cef73e2c0c27ccfa.tar.gz ayatana-indicator-messages-272215246b7ddd8beb7ba622cef73e2c0c27ccfa.tar.bz2 ayatana-indicator-messages-272215246b7ddd8beb7ba622cef73e2c0c27ccfa.zip |
* Upstream release 0.3.5
* Shift command items to line up with application names.
(LP: #537312)
* Track applications we've seen so that we can show "Set Up"
text if we've not seen the app before.
Diffstat (limited to 'src/messages-service.c')
-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(); |