diff -r 56cd8111b7f7 -r 41300fa6a67c examples/qtconcurrent/progressdialog/main.cpp --- a/examples/qtconcurrent/progressdialog/main.cpp Tue Jan 26 12:42:25 2010 +0200 +++ b/examples/qtconcurrent/progressdialog/main.cpp Tue Feb 02 00:43:10 2010 +0200 @@ -74,7 +74,7 @@ QFutureWatcher futureWatcher; QObject::connect(&futureWatcher, SIGNAL(finished()), &dialog, SLOT(reset())); QObject::connect(&dialog, SIGNAL(canceled()), &futureWatcher, SLOT(cancel())); - QObject::connect(&futureWatcher, SIGNAL(progressRangeChanged(int, int)), &dialog, SLOT(setRange(int, int))); + QObject::connect(&futureWatcher, SIGNAL(progressRangeChanged(int,int)), &dialog, SLOT(setRange(int,int))); QObject::connect(&futureWatcher, SIGNAL(progressValueChanged(int)), &dialog, SLOT(setValue(int))); // Start the computation.