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 );