aboutsummaryrefslogtreecommitdiff
path: root/src/freedesktop-interfaces.vala
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-03-08 22:52:10 +0100
committerRobert Tari <robert@tari.in>2021-08-04 21:42:10 +0200
commit6bf50a40c9dc25ae33878d246a74ffc5106dd4a5 (patch)
tree34045394a5fe3ffee32fe89b6b4dfb4f2087462a /src/freedesktop-interfaces.vala
parentac5a42e4e9eb4693b2f79a51e401c66b1beea68b (diff)
downloadayatana-indicator-sound-6bf50a40c9dc25ae33878d246a74ffc5106dd4a5.tar.gz
ayatana-indicator-sound-6bf50a40c9dc25ae33878d246a74ffc5106dd4a5.tar.bz2
ayatana-indicator-sound-6bf50a40c9dc25ae33878d246a74ffc5106dd4a5.zip
Throw GLib.DBusError, GLib.IOError
Diffstat (limited to 'src/freedesktop-interfaces.vala')
-rw-r--r--src/freedesktop-interfaces.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freedesktop-interfaces.vala b/src/freedesktop-interfaces.vala
index 2da88e5..f62fae4 100644
--- a/src/freedesktop-interfaces.vala
+++ b/src/freedesktop-interfaces.vala
@@ -19,7 +19,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
[DBus (name = "org.freedesktop.DBus")]
public interface FreeDesktopObject: Object {
- public abstract async string[] list_names() throws IOError;
+ public abstract async string[] list_names() throws GLib.DBusError, GLib.IOError;
public abstract signal void name_owner_changed ( string name,
string old_owner,
string new_owner );
@@ -27,7 +27,7 @@ public interface FreeDesktopObject: Object {
[DBus (name = "org.freedesktop.DBus.Introspectable")]
public interface FreeDesktopIntrospectable: Object {
- public abstract string Introspect() throws IOError;
+ public abstract string Introspect() throws GLib.DBusError, GLib.IOError;
}
[DBus (name = "org.freedesktop.DBus.Properties")]