summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@qt.io>2018-06-01 14:47:56 +0200
committerMorten Johan Sørvig <morten.sorvig@qt.io>2018-06-04 11:29:38 +0000
commita942de570e2288afa33b9b0b7a54db13e4a56892 (patch)
tree6b3a1651b248172371789e2df9abb56659fe133d /examples/widgets/tutorials
parent6d199358d79f91508a38749b8b2cb71248b9a0b3 (diff)
wasm: wip/webassembly <-> 5.11 diff minimization
Fix whitespace and formatting issues, remove extra code. Change-Id: Ic98f8e386a4bff4ed3570ad23372a787f949ba35 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
Diffstat (limited to 'examples/widgets/tutorials')
-rw-r--r--examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp b/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
index a2a834889f..90f5f1a6b3 100644
--- a/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
+++ b/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
@@ -49,7 +49,6 @@
****************************************************************************/
#include <QtWidgets>
-#include <QtPlugin>
int main(int argc, char *argv[])
{
@@ -61,7 +60,7 @@ int main(int argc, char *argv[])
QObject::connect(quitButton, SIGNAL(clicked()), qApp, SLOT(quit()));
QVBoxLayout *layout = new QVBoxLayout;
- //layout->addWidget(textEdit);
+ layout->addWidget(textEdit);
layout->addWidget(quitButton);
QWidget window;