summaryrefslogtreecommitdiffstats
path: root/examples/dbus
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2012-11-23 14:27:50 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-25 01:34:07 +0100
commit4ac521354dfa575c31ecb732a0f8c1e18827c21e (patch)
tree20833a59d0c291c582332c4cc0f7e724d1c9b996 /examples/dbus
parentd5ec06be6397b807b743aa46707ff45aa9dccafa (diff)
QtBase: example code style
Change-Id: I0685f7e2c7c698a4bf288b8b1ae909167932a3fb Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'examples/dbus')
-rw-r--r--examples/dbus/dbus-chat/chat.cpp6
-rw-r--r--examples/dbus/dbus-chat/chat.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/dbus/dbus-chat/chat.cpp b/examples/dbus/dbus-chat/chat.cpp
index 496e1d7705..febb1da90c 100644
--- a/examples/dbus/dbus-chat/chat.cpp
+++ b/examples/dbus/dbus-chat/chat.cpp
@@ -38,10 +38,10 @@
**
****************************************************************************/
-#include "chat.h"
-#include <QtWidgets/QApplication>
-#include <QtWidgets/QMessageBox>
+#include <QApplication>
+#include <QMessageBox>
+#include "chat.h"
#include "chat_adaptor.h"
#include "chat_interface.h"
diff --git a/examples/dbus/dbus-chat/chat.h b/examples/dbus/dbus-chat/chat.h
index 8f7cdfabd2..fd73d6d227 100644
--- a/examples/dbus/dbus-chat/chat.h
+++ b/examples/dbus/dbus-chat/chat.h
@@ -41,8 +41,8 @@
#ifndef CHAT_H
#define CHAT_H
-#include <QtCore/QStringList>
-#include <QtDBus/QtDBus>
+#include <QStringList>
+
#include "ui_chatmainwindow.h"
#include "ui_chatsetnickname.h"
@@ -78,4 +78,4 @@ public:
NicknameDialog(QWidget *parent = 0);
};
-#endif
+#endif // CHAT_H