diff options
author | Sense Egbert Hofstede <sense@ubuntu.com> | 2010-08-24 16:04:05 +0200 |
---|---|---|
committer | Sense Egbert Hofstede <sense@ubuntu.com> | 2010-08-24 16:04:05 +0200 |
commit | c553ba560850d76ee92d705bfc37a0fa39a37d72 (patch) | |
tree | 1e7542e2f2768bf97fbe65a7a6efc6d243863166 /src/application-service.c | |
parent | 1a0c666b3461d13265a52d35e38d260d975f02aa (diff) | |
parent | b51c1debf9807ad357564975c394badbafccaa1b (diff) | |
download | libayatana-appindicator-c553ba560850d76ee92d705bfc37a0fa39a37d72.tar.gz libayatana-appindicator-c553ba560850d76ee92d705bfc37a0fa39a37d72.tar.bz2 libayatana-appindicator-c553ba560850d76ee92d705bfc37a0fa39a37d72.zip |
Merging with trunk
Diffstat (limited to 'src/application-service.c')
-rw-r--r-- | src/application-service.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/application-service.c b/src/application-service.c index ffd042e..94e7d2e 100644 --- a/src/application-service.c +++ b/src/application-service.c @@ -25,7 +25,6 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "notification-item-client.h" #include "application-service-appstore.h" #include "application-service-watcher.h" -#include "application-service-lru-file.h" #include "dbus-shared.h" /* The base main loop */ @@ -36,8 +35,6 @@ static ApplicationServiceAppstore * appstore = NULL; static ApplicationServiceWatcher * watcher = NULL; /* The service management interface */ static IndicatorService * service = NULL; -/* The LRU file interface */ -static AppLruFile * lrufile = NULL; /* Recieves the disonnection signal from the service object and closes the mainloop. */ @@ -62,11 +59,8 @@ main (int argc, char ** argv) service = indicator_service_new(INDICATOR_APPLICATION_DBUS_ADDR); g_signal_connect(G_OBJECT(service), INDICATOR_SERVICE_SIGNAL_SHUTDOWN, G_CALLBACK(service_disconnected), NULL); - /* Start up the LRU file reading */ - lrufile = app_lru_file_new(); - /* Building our app store */ - appstore = application_service_appstore_new(lrufile); + appstore = application_service_appstore_new(); /* Adding a watcher for the Apps coming up */ watcher = application_service_watcher_new(appstore); @@ -79,7 +73,6 @@ main (int argc, char ** argv) g_object_unref(G_OBJECT(watcher)); g_object_unref(G_OBJECT(appstore)); g_object_unref(G_OBJECT(service)); - g_object_unref(G_OBJECT(lrufile)); return 0; } |