summaryrefslogtreecommitdiffstats
path: root/konsole
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-21 11:41:53 +0900
committerMichele Calgaro <[email protected]>2023-11-21 18:14:06 +0900
commit7272c289be1517c4a4b6ccd35c9d64f8a657593d (patch)
treef52030f604018b8af37958df1a289c8c0d2deb11 /konsole
parent4a6f4a17320917d60610036649b6192289c3f4a5 (diff)
downloadtdebase-7272c289be1517c4a4b6ccd35c9d64f8a657593d.tar.gz
tdebase-7272c289be1517c4a4b6ccd35c9d64f8a657593d.zip
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 100f977221b7319815eb9617f56a067cb0383853)
Diffstat (limited to 'konsole')
-rw-r--r--konsole/konsole/TEWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp
index fb6d951ce..e04c9fa4a 100644
--- a/konsole/konsole/TEWidget.cpp
+++ b/konsole/konsole/TEWidget.cpp
@@ -414,7 +414,7 @@ TEWidget::TEWidget(TQWidget *parent, const char *name)
this, TQT_SLOT(onClearSelection()) );
scrollbar = new TQScrollBar(this);
- scrollbar->setCursor( tqarrowCursor );
+ scrollbar->setCursor( TQt::arrowCursor );
connect(scrollbar, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(scrollChanged(int)));
blinkT = new TQTimer(this);
@@ -1830,7 +1830,7 @@ void TEWidget::setWordCharacters(TQString wc)
void TEWidget::setMouseMarks(bool on)
{
mouse_marks = on;
- setCursor( mouse_marks ? tqibeamCursor : tqarrowCursor );
+ setCursor( mouse_marks ? TQt::ibeamCursor : TQt::arrowCursor );
}
/* ------------------------------------------------------------------------- */