summaryrefslogtreecommitdiffstats
path: root/examples/dbus/remotecontrolledcar/controller/controller.h
diff options
context:
space:
mode:
authorAdemar de Souza Reis Jr <ademar.reis@openbossa.org>2009-11-06 19:49:12 (GMT)
committerAdemar de Souza Reis Jr <ademar.reis@openbossa.org>2009-12-03 21:35:22 (GMT)
commit9fc350e8358f55c13169a9383bd2bd85592bb231 (patch)
tree2a319f8e62fd0535ac8f4a06e9f9e054d76d1116 /examples/dbus/remotecontrolledcar/controller/controller.h
parentaf265e912fab8b7ed5369a4c91f5a7ffd516441b (diff)
downloadQt-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.h')
-rw-r--r--examples/dbus/remotecontrolledcar/controller/controller.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/dbus/remotecontrolledcar/controller/controller.h b/examples/dbus/remotecontrolledcar/controller/controller.h
index aa4cd43..b2265d2 100644
--- a/examples/dbus/remotecontrolledcar/controller/controller.h
+++ b/examples/dbus/remotecontrolledcar/controller/controller.h
@@ -43,8 +43,7 @@
#define CONTROLLER_H
#include "ui_controller.h"
-
-class CarInterface;
+#include "car_interface.h"
class Controller : public QWidget
{
@@ -64,7 +63,7 @@ private slots:
private:
Ui::Controller ui;
- CarInterface *car;
+ com::trolltech::Examples::CarInterface *car;
};
#endif