summaryrefslogtreecommitdiffstats
path: root/examples/widgets/graphicsview/flowlayout/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/graphicsview/flowlayout/window.cpp')
-rw-r--r--examples/widgets/graphicsview/flowlayout/window.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/widgets/graphicsview/flowlayout/window.cpp b/examples/widgets/graphicsview/flowlayout/window.cpp
index c22c2a067b..ec3edfd830 100644
--- a/examples/widgets/graphicsview/flowlayout/window.cpp
+++ b/examples/widgets/graphicsview/flowlayout/window.cpp
@@ -38,17 +38,18 @@
**
****************************************************************************/
-#include <QtWidgets/qgraphicsproxywidget.h>
-#include <QtWidgets/qlabel.h>
#include "flowlayout.h"
#include "window.h"
+#include <QGraphicsProxyWidget>
+#include <QLabel>
+
Window::Window()
: QGraphicsWidget(0, Qt::Window)
{
FlowLayout *lay = new FlowLayout;
QLatin1String wiseWords("I am not bothered by the fact that I am unknown."
- " I am bothered when I do not know others. (Confucius)");
+ " I am bothered when I do not know others. (Confucius)");
QString sentence(wiseWords);
QStringList words = sentence.split(QLatin1Char(' '), QString::SkipEmptyParts);
for (int i = 0; i < words.count(); ++i) {