CVS_SILENT i18n style guide fixes
svn path=/trunk/kdebase/kwin/; revision=380564
This commit is contained in:
parent
3ca2ea00c8
commit
2306f67f6b
2 changed files with 3 additions and 6 deletions
|
@ -12,9 +12,6 @@
|
||||||
<height>503</height>
|
<height>503</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="caption">
|
|
||||||
<string>Form2</string>
|
|
||||||
</property>
|
|
||||||
<vbox>
|
<vbox>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>unnamed</cstring>
|
<cstring>unnamed</cstring>
|
||||||
|
|
|
@ -2325,7 +2325,7 @@ void Workspace::startKompmgr()
|
||||||
KProcess proc;
|
KProcess proc;
|
||||||
proc << "kdialog" << "--error"
|
proc << "kdialog" << "--error"
|
||||||
<< i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.")
|
<< i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.")
|
||||||
<< "--title" << "Composite Manager failure";
|
<< "--title" << "Composite Manager Failure";
|
||||||
proc.start(KProcess::DontCare);
|
proc.start(KProcess::DontCare);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -2382,7 +2382,7 @@ void Workspace::restartKompmgr()
|
||||||
KProcess proc;
|
KProcess proc;
|
||||||
proc << "kdialog" << "--error"
|
proc << "kdialog" << "--error"
|
||||||
<< i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.")
|
<< i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.")
|
||||||
<< "--title" << i18n("Composite Manager failure");
|
<< "--title" << i18n("Composite Manager Failure");
|
||||||
proc.start(KProcess::DontCare);
|
proc.start(KProcess::DontCare);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -2420,7 +2420,7 @@ void Workspace::handleKompmgrOutput( KProcess* , char *buffer, int buflen)
|
||||||
KProcess proc;
|
KProcess proc;
|
||||||
proc << "kdialog" << "--error"
|
proc << "kdialog" << "--error"
|
||||||
<< message
|
<< message
|
||||||
<< "--title" << i18n("Composite Manager failure");
|
<< "--title" << i18n("Composite Manager Failure");
|
||||||
proc.start(KProcess::DontCare);
|
proc.start(KProcess::DontCare);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue