From kde-commits Wed May 26 21:44:17 2004 From: =?utf-8?q?Tobias=20Gl=C3=A4=C3=9Fer?= Date: Wed, 26 May 2004 21:44:17 +0000 To: kde-commits Subject: kdevelop/parts/documentation/tools/htdig Message-Id: <20040526214417.A8000126CB () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=108560786310942 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); }