diff options
author | Conor Curran <conor.curran@canonical.com> | 2012-02-08 17:30:50 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2012-02-08 17:30:50 +0000 |
commit | 3b8d13f352d76bae85dcff763af583927fdaaad7 (patch) | |
tree | 42e684a9682fbe900684e22e059b713c3406ba30 /src/indicator-session.c | |
parent | 4145c29279197d5985d348fbe2ef219a4c015a11 (diff) | |
parent | 6975e8a7aab320c77f3cb3de345415b9f26ba5cd (diff) | |
download | ayatana-indicator-session-3b8d13f352d76bae85dcff763af583927fdaaad7.tar.gz ayatana-indicator-session-3b8d13f352d76bae85dcff763af583927fdaaad7.tar.bz2 ayatana-indicator-session-3b8d13f352d76bae85dcff763af583927fdaaad7.zip |
properly fix conflict and make sure to not check for updates 1 minute after starting the service or Pitti will kill me :)
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index bd7bcd3..e748825 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -276,10 +276,10 @@ indicator_session_get_location (IndicatorObject * io, { IndicatorSession * self = INDICATOR_SESSION (io); if (entry == &self->users){ - return 1; + return 0; } else if (entry == &self->devices){ - return 0; + return 1; } g_warning ("IOEntry handed to us to position but we don't own it!"); return 0; |