summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qthread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/thread/qthread.cpp')
-rw-r--r--src/corelib/thread/qthread.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp
index 08e8368043e..b5b4618e0bd 100644
--- a/src/corelib/thread/qthread.cpp
+++ b/src/corelib/thread/qthread.cpp
@@ -131,21 +131,6 @@ void QAdoptedThread::run()
}
#endif
-QScopedScopeLevelCounter::QScopedScopeLevelCounter(QThreadData *threadData)
- : threadData(threadData)
-{
- ++threadData->scopeLevel;
- qCDebug(lcDeleteLater) << "Increased" << threadData->thread
- << "scope level to" << threadData->scopeLevel;
-}
-
-QScopedScopeLevelCounter::~QScopedScopeLevelCounter()
-{
- --threadData->scopeLevel;
- qCDebug(lcDeleteLater) << "Decreased" << threadData->thread
- << "scope level to" << threadData->scopeLevel;
-}
-
#if QT_CONFIG(thread)
/*
QThreadPrivate