From kde-commits Tue Mar 15 08:21:42 2005 From: Stephan Kulow Date: Tue, 15 Mar 2005 08:21:42 +0000 To: kde-commits Subject: kdelibs/kdoctools Message-Id: <20050315082142.7D1A812E73 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111087490909298 CVS commit by coolo: changed the error text M +2 -7 kio_help.cpp 1.59 M +0 -1 kio_help.h 1.14 --- kdelibs/kdoctools/kio_help.cpp #1.58:1.59 @@ -121,5 +121,6 @@ QString HelpProtocol::lookupFile(const Q else { - notFound(); + unicodeError( i18n("There is no documentation available for %1." ).arg(path) ); + finished(); return QString::null; } @@ -138,10 +139,4 @@ void HelpProtocol::unicodeError( const Q } -void HelpProtocol::notFound() -{ - unicodeError( i18n("The requested help file could not be found. Check that you have installed the documentation." ) ); - finished(); -} - HelpProtocol *slave = 0; --- kdelibs/kdoctools/kio_help.h #1.13:1.14 @@ -38,5 +38,4 @@ private: bool &redirect); - void notFound(); void unicodeError( const QString &t );