diff options
author | Ted Gould <ted@gould.cx> | 2010-01-04 10:10:38 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-04 10:10:38 -0600 |
commit | cde9919d53e85c76a9d26989ef3f23df640973cd (patch) | |
tree | e37b36aaa15a4c8302870ea1a210e2b73fcd8ee9 /src/session-service.c | |
parent | a95848f92b7405ee6e60624c426234662ee59abd (diff) | |
download | ayatana-indicator-session-cde9919d53e85c76a9d26989ef3f23df640973cd.tar.gz ayatana-indicator-session-cde9919d53e85c76a9d26989ef3f23df640973cd.tar.bz2 ayatana-indicator-session-cde9919d53e85c76a9d26989ef3f23df640973cd.zip |
Trying to clean these two up for getting ready to merge.
Diffstat (limited to 'src/session-service.c')
-rw-r--r-- | src/session-service.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/session-service.c b/src/session-service.c index a91170f..7acaef5 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -7,6 +7,7 @@ Copyright 2009 Canonical Ltd. Authors: Ted Gould <ted@canonical.com> Christoph Korn <c_korn@gmx.de> + Cody Russell <crussell@canonical.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3, as published @@ -35,12 +36,15 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "gtk-dialog/gconf-helper.h" +#include "users-service-dbus.h" #include "lock-helper.h" #define DKP_ADDRESS "org.freedesktop.DeviceKit.Power" #define DKP_OBJECT "/org/freedesktop/DeviceKit/Power" #define DKP_INTERFACE "org.freedesktop.DeviceKit.Power" +#define GUEST_SESSION_LAUNCHER "/usr/share/gdm/guest-session/guest-session-launch" + static DbusmenuMenuitem * root_menuitem = NULL; static GMainLoop * mainloop = NULL; static DBusGProxy * dkp_main_proxy = NULL; @@ -243,6 +247,7 @@ show_dialog (DbusmenuMenuitem * mi, gchar * type) provides in the UI. It also connects them to the callbacks. */ static void create_items (DbusmenuMenuitem * root) { + logout_mi = dbusmenu_menuitem_new(); if (supress_confirmations()) { dbusmenu_menuitem_property_set(logout_mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Log Out")); |