2005-03-12 Joe Shaw <joeshaw@novell.com>
authorJoe Shaw <joeshaw@novell.com>
Sun, 13 Mar 2005 02:15:09 +0000 (02:15 +0000)
committerJoe Shaw <joeshaw@novell.com>
Sun, 13 Mar 2005 02:15:09 +0000 (02:15 +0000)
* mono/BusDriver.cs: Update method names: ListServices
becomes ListNames; GetOwner becomes GetNameOwner.

ChangeLog
mono/BusDriver.cs

index 3a809c6..5e4145d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index b5885a3..4e9b7af 100644 (file)
@@ -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);