summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp')
-rw-r--r--tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp b/tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp
index 0ea5478947..2457504c38 100644
--- a/tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp
+++ b/tests/auto/corelib/concurrent/qfuture/tst_qfuture.cpp
@@ -1165,32 +1165,27 @@ public:
public slots:
void finished()
{
-// qDebug() << "finished called";
finishedCalled = true;
}
void canceled()
{
-// qDebug() << "canceled called";
canceledCalled = true;
}
void resultReady(int index)
{
-// qDebug() << "result" << index << "ready";
results.insert(index);
}
void progressRange(int begin, int end)
{
-// qDebug() << "progress range" << begin << end;
rangeBegin = begin;
rangeEnd = end;
}
void progress(int progress)
{
-// qDebug() << "progress" << progress;
reportedProgress.insert(progress);
}
public: