diff options
author | Joe Shaw <joeshaw@novell.com> | 2005-03-13 02:15:09 +0000 |
---|---|---|
committer | Joe Shaw <joeshaw@novell.com> | 2005-03-13 02:15:09 +0000 |
commit | dfa00f175b304bee006534c78423245e934ae72f (patch) | |
tree | e212d6930d25aad9e8eb151686c056258b1b0a87 | |
parent | 2452ac5cdf3965e94d3cdbb81ae6a5dde33a9932 (diff) | |
download | dbus-dfa00f175b304bee006534c78423245e934ae72f.tar.gz |
2005-03-12 Joe Shaw <joeshaw@novell.com>
* mono/BusDriver.cs: Update method names: ListServices
becomes ListNames; GetOwner becomes GetNameOwner.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | mono/BusDriver.cs | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2005-03-12 Joe Shaw <joeshaw@novell.com> + * 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 b5885a32..4e9b7afa 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); |