summaryrefslogtreecommitdiffstats
path: root/kate/part/kateconfig.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-13 20:33:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-15 23:47:11 +0900
commit303b6445011a6ed10c48ac6e1eda415e5c371264 (patch)
treeaded2a8ee5046176d3295bbf1f90f5dd73746677 /kate/part/kateconfig.cpp
parent141ced0c41af8726eedac425ea24cd162bcff862 (diff)
downloadtdelibs-303b6445011a6ed10c48ac6e1eda415e5c371264.tar.gz
tdelibs-303b6445011a6ed10c48ac6e1eda415e5c371264.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c8ece3630d4d21acaf1749fc2cf660a0463070c3)
Diffstat (limited to 'kate/part/kateconfig.cpp')
-rw-r--r--kate/part/kateconfig.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kate/part/kateconfig.cpp b/kate/part/kateconfig.cpp
index c9feae9da..7625af0eb 100644
--- a/kate/part/kateconfig.cpp
+++ b/kate/part/kateconfig.cpp
@@ -1155,13 +1155,13 @@ void KateRendererConfig::setSchemaInternal( int schema )
// same std colors like in KateDocument::markColor
TQColor mark[7];
- mark[0] = Qt::blue;
- mark[1] = Qt::red;
- mark[2] = Qt::yellow;
- mark[3] = Qt::magenta;
- mark[4] = Qt::gray;
- mark[5] = Qt::green;
- mark[6] = Qt::red;
+ mark[0] = TQt::blue;
+ mark[1] = TQt::red;
+ mark[2] = TQt::yellow;
+ mark[3] = TQt::magenta;
+ mark[4] = TQt::gray;
+ mark[5] = TQt::green;
+ mark[6] = TQt::red;
for (int i = 1; i <= KTextEditor::MarkInterface::reservedMarkersCount(); i++) {
TQColor col = config->readColorEntry(TQString("Color MarkType%1").arg(i), &mark[i - 1]);