summaryrefslogtreecommitdiffstats
path: root/mono/DBusType/Boolean.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/DBusType/Boolean.cs')
-rw-r--r--mono/DBusType/Boolean.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mono/DBusType/Boolean.cs b/mono/DBusType/Boolean.cs
index ef8ed498..fa5e1bcf 100644
--- a/mono/DBusType/Boolean.cs
+++ b/mono/DBusType/Boolean.cs
@@ -18,12 +18,12 @@ namespace DBus.DBusType
{
}
- public Boolean(System.Boolean val)
+ public Boolean(System.Boolean val, Service service)
{
this.val = val;
}
- public Boolean(IntPtr iter)
+ public Boolean(IntPtr iter, Service service)
{
this.val = dbus_message_iter_get_boolean(iter);
}