summaryrefslogtreecommitdiffstats
path: root/examples/qtconcurrent
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-07 18:39:30 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-07 18:39:30 (GMT)
commit95e55e6bbfaf76166b64e7f57c612826afd19a86 (patch)
tree4927a51db9b0f2643d94eec7ccb8b7e35e3f5878 /examples/qtconcurrent
parenta985ed3b8f891f10abf99e5ef7756ca16a020d57 (diff)
downloadQt-95e55e6bbfaf76166b64e7f57c612826afd19a86.zip
Qt-95e55e6bbfaf76166b64e7f57c612826afd19a86.tar.gz
Qt-95e55e6bbfaf76166b64e7f57c612826afd19a86.tar.bz2
typos fixed
Reviewed-by: TrustMe
Diffstat (limited to 'examples/qtconcurrent')
-rw-r--r--examples/qtconcurrent/progressdialog/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qtconcurrent/progressdialog/main.cpp b/examples/qtconcurrent/progressdialog/main.cpp
index 04a18dc..369d82c 100644
--- a/examples/qtconcurrent/progressdialog/main.cpp
+++ b/examples/qtconcurrent/progressdialog/main.cpp
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
QProgressDialog dialog;
dialog.setLabelText(QString("Progressing using %1 thread(s)...").arg(QThread::idealThreadCount()));
- // Create a QFutureWatcher and conncect signals and slots.
+ // Create a QFutureWatcher and connect signals and slots.
QFutureWatcher<void> futureWatcher;
QObject::connect(&futureWatcher, SIGNAL(finished()), &dialog, SLOT(reset()));
QObject::connect(&dialog, SIGNAL(canceled()), &futureWatcher, SLOT(cancel()));