From 5bea177ab11f057849d2b072c4ed088ef4e052f0 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 2 Aug 2012 20:49:12 +0200 Subject: fix class and file names in the d-bus examples some omissions from the com.trolltech => org.example replacement. Change-Id: I078c272fc3729fc7b9e9cd3e6ede7c21f0386b62 Reviewed-by: Thiago Macieira --- examples/dbus/dbus-chat/chat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/dbus/dbus-chat/chat.cpp') diff --git a/examples/dbus/dbus-chat/chat.cpp b/examples/dbus/dbus-chat/chat.cpp index beeccb0622..3c3c0f921c 100644 --- a/examples/dbus/dbus-chat/chat.cpp +++ b/examples/dbus/dbus-chat/chat.cpp @@ -62,8 +62,8 @@ ChatMainWindow::ChatMainWindow() new ChatAdaptor(this); QDBusConnection::sessionBus().registerObject("/", this); - com::trolltech::chat *iface; - iface = new com::trolltech::chat(QString(), QString(), QDBusConnection::sessionBus(), this); + org::example::chat *iface; + iface = new org::example::chat(QString(), QString(), QDBusConnection::sessionBus(), this); //connect(iface, SIGNAL(message(QString,QString)), this, SLOT(messageSlot(QString,QString))); QDBusConnection::sessionBus().connect(QString(), QString(), "org.example.chat", "message", this, SLOT(messageSlot(QString,QString))); connect(iface, SIGNAL(action(QString,QString)), this, SLOT(actionSlot(QString,QString))); -- cgit v1.2.3