summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-04-22 10:11:39 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-04-22 10:11:39 +0200
commitdfd166b29c80e73f5b67c1a1cd05ae197a6d0b97 (patch)
tree2535e18c4852426335b10ba19ca45a379aa856ac /doc/src/snippets
parentd79e364d111463255e84c380ab7d91d3cf047456 (diff)
parent1c7c69619028bf5247309d49a8edd9359ef6649f (diff)
Merge remote-tracking branch 'origin/5.15' into 5.15.0
Diffstat (limited to 'doc/src/snippets')
-rw-r--r--doc/src/snippets/code/doc_src_unix-signal-handlers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
index f18271521..f2c2d198a 100644
--- a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
+++ b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
@@ -86,9 +86,9 @@ MyDaemon::MyDaemon(QObject *parent)
if (::socketpair(AF_UNIX, SOCK_STREAM, 0, sigtermFd))
qFatal("Couldn't create TERM socketpair");
snHup = new QSocketNotifier(sighupFd[1], QSocketNotifier::Read, this);
- connect(snHup, SIGNAL(activated(int)), this, SLOT(handleSigHup()));
+ connect(snHup, SIGNAL(activated(QSocketDescriptor)), this, SLOT(handleSigHup()));
snTerm = new QSocketNotifier(sigtermFd[1], QSocketNotifier::Read, this);
- connect(snTerm, SIGNAL(activated(int)), this, SLOT(handleSigTerm()));
+ connect(snTerm, SIGNAL(activated(QSocketDescriptor)), this, SLOT(handleSigTerm()));
...
}