diff --git a/core/ModuleView.cpp b/core/ModuleView.cpp --- a/core/ModuleView.cpp +++ b/core/ModuleView.cpp @@ -213,7 +213,7 @@ return; } - page->setHeader( moduleInfo->comment() ); + page->setHeader( moduleInfo->moduleName() ); page->setIcon( QIcon::fromTheme( moduleInfo->icon() ) ); //HACK: not much other ways to detect is a qml kcm if ( moduleProxy && moduleProxy->realModule()->inherits("KCModuleQml") ) { @@ -224,7 +224,7 @@ } if( moduleProxy && moduleProxy->realModule()->useRootOnlyMessage() ) { - page->setHeader( moduleInfo->comment() + QStringLiteral("
") + moduleProxy->realModule()->rootOnlyMessage() + QStringLiteral("") ); + page->setHeader( moduleInfo->moduleName() + QStringLiteral("
") + moduleProxy->realModule()->rootOnlyMessage() + QStringLiteral("") ); page->setIcon( KDE::icon( moduleInfo->icon(), QStringList() << QStringLiteral("dialog-warning") ) ); } }