diff options
author | Ademar de Souza Reis Jr <ademar.reis@openbossa.org> | 2009-11-06 19:49:12 (GMT) |
---|---|---|
committer | Ademar de Souza Reis Jr <ademar.reis@openbossa.org> | 2009-12-03 21:35:22 (GMT) |
commit | 9fc350e8358f55c13169a9383bd2bd85592bb231 (patch) | |
tree | 2a319f8e62fd0535ac8f4a06e9f9e054d76d1116 /examples/dbus/remotecontrolledcar/controller/controller.cpp | |
parent | af265e912fab8b7ed5369a4c91f5a7ffd516441b (diff) | |
download | Qt-9fc350e8358f55c13169a9383bd2bd85592bb231.zip Qt-9fc350e8358f55c13169a9383bd2bd85592bb231.tar.gz Qt-9fc350e8358f55c13169a9383bd2bd85592bb231.tar.bz2 |
examples/dbus: update remotecontrolledcar example
The example was outdated, thus causing some confusion for
someone who tries to follow it.
Diffstat (limited to 'examples/dbus/remotecontrolledcar/controller/controller.cpp')
-rw-r--r-- | examples/dbus/remotecontrolledcar/controller/controller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dbus/remotecontrolledcar/controller/controller.cpp b/examples/dbus/remotecontrolledcar/controller/controller.cpp index fd6aa13..a3d7c61 100644 --- a/examples/dbus/remotecontrolledcar/controller/controller.cpp +++ b/examples/dbus/remotecontrolledcar/controller/controller.cpp @@ -42,13 +42,13 @@ #include <QtGui> #include "controller.h" -#include "car_interface_p.h" +#include "car_interface.h" Controller::Controller(QWidget *parent) : QWidget(parent) { ui.setupUi(this); - car = new CarInterface("com.trolltech.CarExample", "/Car", + car = new com::trolltech::Examples::CarInterface("com.trolltech.CarExample", "/Car", QDBusConnection::sessionBus(), this); startTimer(1000); } |