summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qcoreapplication.cpp
diff options
context:
space:
mode:
authorRafael Roquetto <rafael.roquetto@kdab.com>2012-11-08 11:11:40 -0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-08 22:47:42 +0100
commit18553bc50de0bd3b34c4903ca21d108d22169936 (patch)
tree825de4527958ed5c1dab267412e806b8cf9ada79 /src/corelib/kernel/qcoreapplication.cpp
parentacf959bee68d0dffc38770c045e47f7c4ccf348f (diff)
Cleanup old signal handler mechanisms
Remove watchUnixSignal(), unixSignal() and associated code. These are relics which were being used by QWS to detect virtual console switching. Currently they are not being used at all. The recommended way to watch for Unix signals in Qt is http://doc-snapshot.qt-project.org/5.0/unix-signals.html. Change-Id: Id34207cb8853442302a45b2816356da0f973ebb1 Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/corelib/kernel/qcoreapplication.cpp')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index cb744a67a6..507d83a9a4 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -2321,19 +2321,6 @@ void QCoreApplication::setEventDispatcher(QAbstractEventDispatcher *eventDispatc
mainThread->setEventDispatcher(eventDispatcher);
}
-/*
- \fn void QCoreApplication::watchUnixSignal(int signal, bool watch)
- \internal
-*/
-
-/*!
- \fn void QCoreApplication::unixSignal(int number)
- \internal
-
- This signal is emitted whenever a Unix signal is received by the
- application. The Unix signal received is specified by its \a number.
-*/
-
/*!
\fn void qAddPostRoutine(QtCleanUpFunction ptr)
\relates QCoreApplication