diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-15 01:11:55 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-15 01:11:55 -0600 |
commit | c720ccaa14e7cfb5fd6a43212efbc23fae330526 (patch) | |
tree | fcd763216b6ab859005d79cb40fa01846535ef55 /twin | |
parent | 7e955780a5e4a4a46e797fc6f6f884693f238688 (diff) | |
download | tdebase-c720ccaa14e7cfb5fd6a43212efbc23fae330526.tar.gz tdebase-c720ccaa14e7cfb5fd6a43212efbc23fae330526.zip |
Update last commit
Diffstat (limited to 'twin')
-rw-r--r-- | twin/kcmtwin/twindecoration/twindecoration.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/twin/kcmtwin/twindecoration/twindecoration.cpp b/twin/kcmtwin/twindecoration/twindecoration.cpp index d65530a38..ac0624c24 100644 --- a/twin/kcmtwin/twindecoration/twindecoration.cpp +++ b/twin/kcmtwin/twindecoration/twindecoration.cpp @@ -334,7 +334,7 @@ KWinDecorationModule::KWinDecorationModule(TQWidget* parent, const char* name, c windowmanagerLayout->addWidget(thirdpartyWMLabel); windowmanagerLayout->addWidget(thirdpartyWMList); thirdpartyWMArguments = new KLineEdit( windowmanagerPage ); - whatsThis = i18n("Specify any command line arguments to be passed to the selected WM on startup, separated with whitespace. A common example is replace"); + whatsThis = i18n("Specify any command line arguments to be passed to the selected WM on startup, separated with whitespace. A common example is --replace"); TQWhatsThis::add(thirdpartyWMArguments, whatsThis); TQLabel* thirdpartyWMArgumentsLabel = new TQLabel(i18n("Command line arguments to pass to the Window Manager (should remain blank unless needed):"), windowmanagerPage); windowmanagerLayout->addWidget(thirdpartyWMArgumentsLabel); @@ -823,6 +823,7 @@ void KWinDecorationModule::writeConfig( KConfig* conf ) TQStringList wmstartupcommand; wmstartupcommand.split(" ", thirdpartyWMArguments->text()); wmstartupcommand.prepend(wmExecutableName); + wmstartupcommand.append("--replace"); newWMProc << wmstartupcommand; newWMProc.start(KProcess::DontCare, NoCommunication); newWMProc.detach(); |