diff -r 5dc02b23752f -r 3e2da88830cd examples/qtconcurrent/progressdialog/main.cpp --- a/examples/qtconcurrent/progressdialog/main.cpp Tue Jul 06 15:10:48 2010 +0300 +++ b/examples/qtconcurrent/progressdialog/main.cpp Wed Aug 18 10:37:55 2010 +0300 @@ -69,7 +69,7 @@ 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 futureWatcher; QObject::connect(&futureWatcher, SIGNAL(finished()), &dialog, SLOT(reset())); QObject::connect(&dialog, SIGNAL(canceled()), &futureWatcher, SLOT(cancel()));