examples/qtconcurrent/progressdialog/main.cpp
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
--- 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<void> futureWatcher;
     QObject::connect(&futureWatcher, SIGNAL(finished()), &dialog, SLOT(reset()));
     QObject::connect(&dialog, SIGNAL(canceled()), &futureWatcher, SLOT(cancel()));