summaryrefslogtreecommitdiffstats
path: root/src/config/config-interface.vala
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2018-06-28 01:03:02 +0200
committerSebastian Reichel <sre@ring0.de>2018-06-28 01:53:40 +0200
commitf466538a3527cd539c732d3abee481fa7a34fc2f (patch)
tree0a244c5b3594ee42d25744bdbdd3f0a44595c87b /src/config/config-interface.vala
parentc70d626e473c8cbdbd87125a256ca221c0c3fa23 (diff)
downloadserial-barcode-scanner-f466538a3527cd539c732d3abee481fa7a34fc2f.tar.bz2
all: Add DBusError to avoid warnings with valac 0.40
Diffstat (limited to 'src/config/config-interface.vala')
-rw-r--r--src/config/config-interface.vala16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/config/config-interface.vala b/src/config/config-interface.vala
index c34e3a7..369071e 100644
--- a/src/config/config-interface.vala
+++ b/src/config/config-interface.vala
@@ -15,12 +15,12 @@
[DBus (name = "io.mainframe.shopsystem.Config")]
public interface Config : Object {
- public abstract bool has_group(string group_name) throws IOError, KeyFileError;
- public abstract bool has_key(string group_name, string key) throws IOError, KeyFileError;
- public abstract string get_string(string group_name, string key) throws IOError, KeyFileError;
- public abstract bool get_boolean(string group_name, string key) throws IOError, KeyFileError;
- public abstract int get_integer(string group_name, string key) throws IOError, KeyFileError;
- public abstract int64 get_int64(string group_name, string key) throws IOError, KeyFileError;
- public abstract uint64 get_uint64(string group_name, string key) throws IOError, KeyFileError;
- public abstract double get_double(string group_name, string key) throws IOError, KeyFileError;
+ public abstract bool has_group(string group_name) throws DBusError, IOError, KeyFileError;
+ public abstract bool has_key(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract string get_string(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract bool get_boolean(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract int get_integer(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract int64 get_int64(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract uint64 get_uint64(string group_name, string key) throws DBusError, IOError, KeyFileError;
+ public abstract double get_double(string group_name, string key) throws DBusError, IOError, KeyFileError;
}