From 2e05a1578428fd8268512e12d88d90e93dcf5dff Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 22 Oct 2012 10:59:32 +0200 Subject: QtCore: Make more signals private. Change-Id: Ida190e8b9c1ff47a6f54a5bf68673ab50a2f1bfe Reviewed-by: Olivier Goffart Reviewed-by: Stephen Kelly --- src/corelib/thread/qthread_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/corelib/thread/qthread_win.cpp') diff --git a/src/corelib/thread/qthread_win.cpp b/src/corelib/thread/qthread_win.cpp index 56e58fbcc3..cd627d10c9 100644 --- a/src/corelib/thread/qthread_win.cpp +++ b/src/corelib/thread/qthread_win.cpp @@ -336,7 +336,7 @@ unsigned int __stdcall QT_ENSURE_STACK_ALIGNED_FOR_SSE QThreadPrivate::start(voi thr->metaObject()->className() : objectName.constData()); #endif - emit thr->started(); + emit thr->started(QThread::QPrivateSignal()); QThread::setTerminationEnabled(true); thr->run(); @@ -354,7 +354,7 @@ void QThreadPrivate::finish(void *arg, bool lockAnyway) d->priority = QThread::InheritPriority; void **tls_data = reinterpret_cast(&d->data->tls); locker.unlock(); - emit thr->finished(); + emit thr->finished(QThread::QPrivateSignal()); QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete); QThreadStorageData::finish(tls_data); locker.relock(); -- cgit v1.2.3