--- ksplashml/kcmksplash/installer.cpp.sav 2005-03-08 14:36:02.000000000 +0100 +++ ksplashml/kcmksplash/installer.cpp 2005-03-08 17:23:10.131393250 +0100 @@ -469,6 +469,14 @@ void SplashInstaller::slotTest() KMessageBox::error(this,i18n("Unable to start ksplashsimple.")); return; } + if( themeName.startsWith( "ksplashx-" )) + { + KProcess proc; + proc << "ksplashx" << themeName.mid( 9 ) << "--test"; + if (!proc.start(KProcess::Block)) + KMessageBox::error(this,i18n("Unable to start ksplashx.")); + return; + } KProcess proc; proc << "ksplash" << "--test" << "--theme" << themeName; if (!proc.start(KProcess::Block))