From f33453896716e69cacd0d065b7cc633258678946 Mon Sep 17 00:00:00 2001 From: Owen Fraser-Green Date: Wed, 24 Mar 2004 13:15:20 +0000 Subject: Made all DBusTypes take Service in the constructor because Array also needed it in the case of an array of OBJECT_PATH objects. --- mono/DBusType/Dict.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mono/DBusType/Dict.cs') 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); -- cgit