SVN commit 1181013 by dfaure: Show the error from KPluginLoader when this fails, it tells precisely the user -- i.e. andras ;) -- what the problem is. M +1 -1 mainwindow.cpp --- trunk/KDE/kdepim/akregator/src/mainwindow.cpp #1181012:1181013 @@ -101,7 +101,7 @@ KPluginLoader loader("akregatorpart"); KPluginFactory* const factory = loader.factory(); if (!factory) { - KMessageBox::error(this, i18n("Could not find the Akregator part; please check your installation.")); + KMessageBox::error(this, i18n("Could not find the Akregator part; please check your installation.\n%1", loader.errorString()) ); return false; }