summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2018-12-07 14:14:13 +0100
committerLuca Beldi <v.ronin@yahoo.it>2019-01-03 08:30:04 +0000
commita21f3431b861b09a4768801f856d431c6ac44313 (patch)
tree106324f1135965f8d984806a1c838a89708705bd /examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
parent8c04aab8966611e96c64f469b7a1c6afe67e3fca (diff)
Cleanup Widgets examples - new signal/slot syntax
Cleanup the Widget examples - use the new signal/slot syntax where possible - tutorials subdirectory Change-Id: I741589f6616578412ad74f8371e0e3c87df783a2 Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com> Reviewed-by: Luca Beldi <v.ronin@yahoo.it>
Diffstat (limited to 'examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp')
-rw-r--r--examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp b/examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
index 0a60c1cf16..d4b43eb034 100644
--- a/examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
+++ b/examples/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp
@@ -71,7 +71,8 @@ Notepad::Notepad()
textEdit = new QTextEdit;
quitButton = new QPushButton(tr("Quit"));
- connect(quitButton, SIGNAL(clicked()), this, SLOT(quit()));
+ connect(quitButton, &QPushButton::clicked,
+ this, &Notepad::quit);
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(textEdit);