diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-21 11:41:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-21 11:41:53 +0900 |
commit | 100f977221b7319815eb9617f56a067cb0383853 (patch) | |
tree | da2cc1ced8f06fe9b9dfb91d2972876a3b198640 /konsole | |
parent | 8f924d271a4771b8046697fefd778d895a54d93d (diff) | |
download | tdebase-100f977221b7319815eb9617f56a067cb0383853.tar.gz tdebase-100f977221b7319815eb9617f56a067cb0383853.zip |
Replace various tq* strings with TQt::* equivalents
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konsole')
-rw-r--r-- | konsole/konsole/TEWidget.cpp | 4 |
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 ); } /* ------------------------------------------------------------------------- */ |