diff options
author | Aurelien Gateau <aurelien.gateau@canonical.com> | 2010-10-08 17:02:24 +0200 |
---|---|---|
committer | Aurelien Gateau <aurelien.gateau@canonical.com> | 2010-10-08 17:02:24 +0200 |
commit | 6f032f50c8bec41cd56e36ec09af118a9684af5b (patch) | |
tree | c23e61e24c4e7674d624e2d5329b1e5fd612f751 /src/notification-watcher.xml | |
parent | fe08c86fc6b9d9d843149bf195b995d7e38a2c40 (diff) | |
download | ayatana-indicator-application-6f032f50c8bec41cd56e36ec09af118a9684af5b.tar.gz ayatana-indicator-application-6f032f50c8bec41cd56e36ec09af118a9684af5b.tar.bz2 ayatana-indicator-application-6f032f50c8bec41cd56e36ec09af118a9684af5b.zip |
Fix implementation of org.kde.StatusNotifierWatcher interface
ProtocolVersion, IsStatusNotifierHostRegistered and
RegisteredStatusNotifierItems are properties, not methods.
Diffstat (limited to 'src/notification-watcher.xml')
-rw-r--r-- | src/notification-watcher.xml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/notification-watcher.xml b/src/notification-watcher.xml index 5f19dd2..1a99af3 100644 --- a/src/notification-watcher.xml +++ b/src/notification-watcher.xml @@ -3,25 +3,18 @@ <interface name="org.kde.StatusNotifierWatcher"> <!-- Properties --> - <!-- None currently --> + <property name="ProtocolVersion" type="i" access="read" /> + <property name="IsStatusNotifierHostRegistered" type="b" access="read" /> + <property name="RegisteredStatusNotifierItems" type="as" access="read" /> <!-- Methods --> <method name="RegisterStatusNotifierItem"> <annotation name="org.freedesktop.DBus.GLib.Async" value="true" /> <arg type="s" name="service" direction="in" /> </method> - <method name="RegisteredStatusNotifierItems"> - <arg type="as" name="services" direction="out" /> - </method> - <method name="ProtocolVersion"> - <arg type="s" name="version" direction="out" /> - </method> <method name="RegisterNotificationHost"> <arg type="s" name="service" direction="in" /> </method> - <method name="IsNotificationHostRegistered"> - <arg type="b" name="hasHost" direction="out" /> - </method> <method name="XAyatanaRegisterNotificationApprover"> <annotation name="org.freedesktop.DBus.GLib.Async" value="true" /> <!-- The path where to find the approver interface --> |