CVS commit by tobgle: Fixed warning, because of the deprecated function KProgress::setRange() (by replacing it with the recommended KProgress::setTotalSteps()) M +1 -1 htdigindex.cpp 1.4 --- kdevelop/parts/documentation/tools/htdig/htdigindex.cpp #1.3:1.4 @@ -128,5 +128,5 @@ void ProgressDialog::setFilesScanned(int void ProgressDialog::setFilesToDig(int n) { - bar->setRange(0, n); + bar->setTotalSteps(0, n); }