File fix_designer_path.diff of Package kdepim3
--- libkdepim/kcmdesignerfields.cpp
+++ libkdepim/kcmdesignerfields.cpp
@@ -263,7 +263,7 @@
QVBoxLayout *layout = new QVBoxLayout( this, KDialog::marginHint(),
KDialog::spacingHint() );
- bool noDesigner = KStandardDirs::findExe("designer").isEmpty();
+ bool noDesigner = ! KStandardDirs::exists("/usr/lib/qt3/bin/designer");
if ( noDesigner )
{
@@ -406,7 +406,7 @@
void KCMDesignerFields::startDesigner()
{
- QString cmdLine = "designer";
+ QString cmdLine = "/usr/lib/qt3/bin/designer";
// check if path exists and create one if not.
QString cepPath = localUiDir();