blob: f32ebe9c124be245e8ea5385862b9cd516dbf444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- kdepim/libkdepim/kcmdesignerfields.cpp.orig 2006-05-07 04:05:20.000000000 +0200
+++ kdepim/libkdepim/kcmdesignerfields.cpp 2006-05-07 04:06:33.000000000 +0200
@@ -264,7 +264,7 @@
QVBoxLayout *layout = new QVBoxLayout( this, KDialog::marginHint(),
KDialog::spacingHint() );
- bool noDesigner = KStandardDirs::findExe("designer").isEmpty();
+ bool noDesigner = KStandardDirs::findExe("/usr/qt/3/bin/designer").isEmpty();
if ( noDesigner )
{
@@ -407,7 +407,7 @@
void KCMDesignerFields::startDesigner()
{
- QString cmdLine = "designer";
+ QString cmdLine = "/usr/qt/3/bin/designer";
// check if path exists and create one if not.
QString cepPath = localUiDir();
|