summaryrefslogtreecommitdiffstats
path: root/mono/DBusType/Dict.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/DBusType/Dict.cs')
-rw-r--r--mono/DBusType/Dict.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mono/DBusType/Dict.cs b/mono/DBusType/Dict.cs
index e6fce159..bd649434 100644
--- a/mono/DBusType/Dict.cs
+++ b/mono/DBusType/Dict.cs
@@ -19,7 +19,7 @@ namespace DBus.DBusType
{
}
- public Dict(IDictionary val)
+ public Dict(IDictionary val, Service service)
{
this.val = new Hashtable();
foreach (DictionaryEntry entry in val) {
@@ -27,7 +27,7 @@ namespace DBus.DBusType
}
}
- public Dict(IntPtr iter)
+ public Dict(IntPtr iter, Service service)
{
IntPtr dictIter = Marshal.AllocCoTaskMem(Arguments.DBusMessageIterSize);