summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris <xchrisx@uber.space>2019-08-05 00:02:39 +0200
committerChris <xchrisx@uber.space>2019-08-09 10:57:24 +0200
commit2d7de7cea4e48670e9849188b6475c344600790b (patch)
treecec2fa5e162424f9ab8da349c0d9d719e0190053
parent9dce7722962d0afc07e43ad61ef9db82ace194f1 (diff)
downloadtdebase-2d7de7ce.tar.gz
tdebase-2d7de7ce.zip
Replace Qt branding with TQt ones.
Signed-off-by: Chris <xchrisx@uber.space>
-rw-r--r--kcontrol/style/kcmstyle.cpp2
-rw-r--r--konsole/konsole/main.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/kcontrol/style/kcmstyle.cpp b/kcontrol/style/kcmstyle.cpp
index d6a7ae6ee..a51a63e6b 100644
--- a/kcontrol/style/kcmstyle.cpp
+++ b/kcontrol/style/kcmstyle.cpp
@@ -1097,7 +1097,7 @@ void KCMStyle::addWhatsThis()
// Page3
TQWhatsThis::add( page3, i18n("<b>Note:</b> that all widgets in this combobox "
- "do not apply to Qt-only applications.") );
+ "do not apply to TQt-only applications.") );
TQWhatsThis::add( cbHoverButtons, i18n("If this option is selected, toolbar buttons will change "
"their color when the mouse cursor is moved over them." ) );
TQWhatsThis::add( cbTransparentToolbars, i18n("If you check this box, the toolbars will be "
diff --git a/konsole/konsole/main.cpp b/konsole/konsole/main.cpp
index e18d52c6a..4039362e3 100644
--- a/konsole/konsole/main.cpp
+++ b/konsole/konsole/main.cpp
@@ -86,7 +86,7 @@ static TDECmdLineOptions options[] =
{ "schema <name> | <file>", I18N_NOOP("Set schema to 'name' or use 'file'"), 0 },
{ "schemas", 0, 0 },
{ "schemata", I18N_NOOP("List available schemata"), 0 },
- { "script", I18N_NOOP("Enable extended DCOP Qt functions"), 0 },
+ { "script", I18N_NOOP("Enable extended DCOP TQt functions"), 0 },
{ "workdir <dir>", I18N_NOOP("Change working directory to 'dir'"), 0 },
{ "!e <command>", I18N_NOOP("Execute 'command' instead of shell"), 0 },
// WABA: All options after -e are treated as arguments.
@@ -238,15 +238,15 @@ extern "C" int KDE_EXPORT kdemain(int argc, char* argv[])
TEWidget::setAntialias( !has_noxft );
TEWidget::setStandalone( true );
- // The following Qt options have no effect; warn users.
+ // The following TQt options have no effect; warn users.
if( qtargs->isSet("background") )
- kdWarning() << "The Qt option -bg, --background has no effect." << endl;
+ kdWarning() << "The TQt option -bg, --background has no effect." << endl;
if( qtargs->isSet("foreground") )
- kdWarning() << "The Qt option -fg, --foreground has no effect." << endl;
+ kdWarning() << "The TQt option -fg, --foreground has no effect." << endl;
if( qtargs->isSet("button") )
- kdWarning() << "The Qt option -btn, --button has no effect." << endl;
+ kdWarning() << "The TQt option -btn, --button has no effect." << endl;
if( qtargs->isSet("font") )
- kdWarning() << "The Qt option -fn, --font has no effect." << endl;
+ kdWarning() << "The TQt option -fn, --font has no effect." << endl;
TDEApplication* a = NULL;
#ifdef COMPOSITE