diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-29 00:12:37 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-29 00:12:37 -0600 |
commit | fd41985edbb55d5db52e3d2cf8bfcf38fa92652a (patch) | |
tree | afb6b29888961cdf706b4ea97e3b6edef3a306af /twin/kcmtwin | |
parent | 4d07795a1f72e013f590d1aa9dc24eb101899aa2 (diff) | |
download | tdebase-fd41985edbb55d5db52e3d2cf8bfcf38fa92652a.tar.gz tdebase-fd41985edbb55d5db52e3d2cf8bfcf38fa92652a.zip |
Fix KWin->TWin references in text strings.
Diffstat (limited to 'twin/kcmtwin')
-rw-r--r-- | twin/kcmtwin/twinoptions/main.cpp | 18 | ||||
-rw-r--r-- | twin/kcmtwin/twinrules/kcm.cpp | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/twin/kcmtwin/twinoptions/main.cpp b/twin/kcmtwin/twinoptions/main.cpp index e63ec54d5..c2a74ebb0 100644 --- a/twin/kcmtwin/twinoptions/main.cpp +++ b/twin/kcmtwin/twinoptions/main.cpp @@ -92,32 +92,32 @@ KWinOptions::KWinOptions(TQWidget *parent, const char *name) tab = new TQTabWidget(this); layout->addWidget(tab); - mFocus = new KFocusConfig(false, mConfig, this, "KWin Focus Config"); + mFocus = new KFocusConfig(false, mConfig, this, "TWin Focus Config"); mFocus->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mFocus, i18n("&Focus")); connect(mFocus, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "KWin TitleBar Actions"); + mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "TWin TitleBar Actions"); mTitleBarActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTitleBarActions, i18n("&Titlebar Actions")); connect(mTitleBarActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mWindowActions = new KWindowActionsConfig(false, mConfig, this, "KWin Window Actions"); + mWindowActions = new KWindowActionsConfig(false, mConfig, this, "TWin Window Actions"); mWindowActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mWindowActions, i18n("Window Actio&ns")); connect(mWindowActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mMoving = new KMovingConfig(false, mConfig, this, "KWin Moving"); + mMoving = new KMovingConfig(false, mConfig, this, "TWin Moving"); mMoving->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mMoving, i18n("&Moving")); connect(mMoving, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mAdvanced = new KAdvancedConfig(false, mConfig, this, "KWin Advanced"); + mAdvanced = new KAdvancedConfig(false, mConfig, this, "TWin Advanced"); mAdvanced->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mAdvanced, i18n("Ad&vanced")); connect(mAdvanced, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mTranslucency = new KTranslucencyConfig(false, mConfig, this, "KWin Translucency"); + mTranslucency = new KTranslucencyConfig(false, mConfig, this, "TWin Translucency"); mTranslucency->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTranslucency, i18n("&Translucency")); connect(mTranslucency, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); @@ -191,7 +191,7 @@ TQString KWinOptions::quickHelp() const " moved, resized or clicked on. You can also specify a focus policy as well as a placement" " policy for new windows." " <p>Please note that this configuration will not take effect if you do not use" - " KWin as your window manager. If you do use a different window manager, please refer to its documentation" + " TWin as your window manager. If you do use a different window manager, please refer to its documentation" " for how to customize window behavior."); } @@ -210,12 +210,12 @@ TDEActionsOptions::TDEActionsOptions(TQWidget *parent, const char *name) tab = new TQTabWidget(this); layout->addWidget(tab); - mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "KWin TitleBar Actions"); + mTitleBarActions = new KTitleBarActionsConfig(false, mConfig, this, "TWin TitleBar Actions"); mTitleBarActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mTitleBarActions, i18n("&Titlebar Actions")); connect(mTitleBarActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); - mWindowActions = new KWindowActionsConfig(false, mConfig, this, "KWin Window Actions"); + mWindowActions = new KWindowActionsConfig(false, mConfig, this, "TWin Window Actions"); mWindowActions->layout()->setMargin( KDialog::marginHint() ); tab->addTab(mWindowActions, i18n("Window Actio&ns")); connect(mWindowActions, TQT_SIGNAL(changed(bool)), this, TQT_SLOT(moduleChanged(bool))); diff --git a/twin/kcmtwin/twinrules/kcm.cpp b/twin/kcmtwin/twinrules/kcm.cpp index b137a7b09..2f28bc5dd 100644 --- a/twin/kcmtwin/twinrules/kcm.cpp +++ b/twin/kcmtwin/twinrules/kcm.cpp @@ -81,7 +81,7 @@ TQString KCMRules::quickHelp() const return i18n("<h1>Window-specific Settings</h1> Here you can customize window settings specifically only" " for some windows." " <p>Please note that this configuration will not take effect if you do not use" - " KWin as your window manager. If you do use a different window manager, please refer to its documentation" + " TWin as your window manager. If you do use a different window manager, please refer to its documentation" " for how to customize window behavior."); } |