From: Joe Shaw Date: Sun, 13 Mar 2005 02:15:09 +0000 (+0000) Subject: 2005-03-12 Joe Shaw X-Git-Tag: dbus-0.32.0~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfa00f175b304bee006534c78423245e934ae72f;p=thirdparty%2Fdbus.git 2005-03-12 Joe Shaw * mono/BusDriver.cs: Update method names: ListServices becomes ListNames; GetOwner becomes GetNameOwner. --- diff --git a/ChangeLog b/ChangeLog index 3a809c661..5e4145d95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-03-12 Joe Shaw + * mono/BusDriver.cs: Update method names: ListServices + becomes ListNames; GetOwner becomes GetNameOwner. + * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0 onto the eval stack when removing the delegate. diff --git a/mono/BusDriver.cs b/mono/BusDriver.cs index b5885a321..4e9b7afaa 100644 --- a/mono/BusDriver.cs +++ b/mono/BusDriver.cs @@ -11,10 +11,10 @@ namespace DBus public abstract class BusDriver { [Method] - public abstract string[] ListServices (); + public abstract string[] ListNames (); [Method] - public abstract string GetOwner (string name); + public abstract string GetNameOwner (string name); [Method] public abstract UInt32 GetConnectionUnixUser (string connectionName);