~ubuntu-branches/ubuntu/trusty/banshee/trusty-updates

« back to all changes in this revision

Viewing changes to src/Core/Banshee.Services/Banshee.ServiceStack/DBusServiceManager.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin, b5f10d6
  • Date: 2014-03-25 18:28:08 UTC
  • Revision ID: package-import@ubuntu.com-20140325182808-dwp77oh5q2d4m333
Tags: 2.9.0+really2.6.2-2ubuntu2
[b5f10d6] Go back to dbus# 1.0 ABI.
Upstream is really jittery about the stability of newer dbus#, so go back just
for the LTS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
                string bus_name = DBusConnection.MakeBusName (serviceName);
136
136
 
137
137
                Log.DebugFormat ("Registering remote object {0} ({1}) on {2}", path, o.GetType (), bus_name);
138
 
                Bus.Session.Register (path, o);
 
138
 
 
139
                #pragma warning disable 0618
 
140
                Bus.Session.Register (bus_name, path, o);
 
141
                #pragma warning restore 0618
139
142
            }
140
143
 
141
144
            return path;