blob: f1894afeb2be3b3e6a4a490981ebc057a36a36fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Description: Port to dbus#2 API
Forwarded: not-needed
--- tasque-0.1.12.orig/src/Gtk.Tasque/RemoteControlProxy.cs
+++ tasque-0.1.12/src/Gtk.Tasque/RemoteControlProxy.cs
@@ -22,8 +22,7 @@ namespace Tasque
BusG.Init ();
RemoteControl remote_control = new RemoteControl ();
- Bus.Session.Register (Namespace,
- new ObjectPath (Path),
+ Bus.Session.Register (new ObjectPath (Path),
remote_control);
if (Bus.Session.RequestName (Namespace)
@@ -33,4 +32,4 @@ namespace Tasque
return remote_control;
}
}
-}
\ No newline at end of file
+}
|