From 100f977221b7319815eb9617f56a067cb0383853 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 21 Nov 2023 11:41:53 +0900 Subject: Replace various tq* strings with TQt::* equivalents Signed-off-by: Michele Calgaro --- konsole/konsole/TEWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'konsole') 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 ); } /* ------------------------------------------------------------------------- */ -- cgit v1.2.1