Skip to content

Commit

Permalink
Fixing dbus path and name for the RemoteControl object (Closes: #202)
Browse files Browse the repository at this point in the history
Guake was exporting a wrong unique name in dbus in both service
file and dbusiface.py. The right one is org.guake.* not org.gnome.Guake
nor org.gnome_terminal.*.
  • Loading branch information
clarete committed Jun 23, 2010
1 parent fd03c6c commit 9896803
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ AC_CONFIG_FILES([
data/Makefile
data/guake.desktop
data/guake-prefs.desktop
data/org.gnome.Guake.service
data/org.guake.Guake.service
data/pixmaps/Makefile
po/Makefile.in
src/Makefile
Expand Down
2 changes: 1 addition & 1 deletion data/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ui_DATA = \

# dbus service file
servicedir = $(datadir)/dbus-1/services
service_in_files = org.gnome.Guake.service.in
service_in_files = org.guake.Guake.service.in
service_DATA = $(service_in_files:.service.in=.service)

@INTLTOOL_DESKTOP_RULE@
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[D-BUS Service]
Name=org.gnome.Guake
Name=org.guake.Guake
Exec=@BINDIR@/guake
4 changes: 2 additions & 2 deletions src/dbusiface.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import common
dbus.glib.threads_init()

DBUS_PATH = '/org/guake_terminal/guake/RemoteControl'
DBUS_NAME = 'org.guake_terminal.Guake'
DBUS_PATH = '/org/guake/RemoteControl'
DBUS_NAME = 'org.guake.RemoteControl'

class DbusManager(dbus.service.Object):
def __init__(self, guakeinstance):
Expand Down

0 comments on commit 9896803

Please sign in to comment.