summaryrefslogtreecommitdiffstats
path: root/cervisia/qttableview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 11:05:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-08 18:04:37 +0900
commit5d52b8ff2df2d127a119ffd217a0db49c4d78567 (patch)
treecc21f36537bfb38f376cf97cb77688ea19882047 /cervisia/qttableview.cpp
parent779722e260dd4d10bec7328ddc0a4e3e42a08e7d (diff)
downloadtdesdk-5d52b8ff2df2d127a119ffd217a0db49c4d78567.tar.gz
tdesdk-5d52b8ff2df2d127a119ffd217a0db49c4d78567.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1a7a57976491e8df569198d8e903bf9e57e233f0)
Diffstat (limited to 'cervisia/qttableview.cpp')
-rw-r--r--cervisia/qttableview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cervisia/qttableview.cpp b/cervisia/qttableview.cpp
index 22eca6da..6c02819c 100644
--- a/cervisia/qttableview.cpp
+++ b/cervisia/qttableview.cpp
@@ -1420,7 +1420,7 @@ void QtTableView::resizeEvent( TQResizeEvent * )
void QtTableView::wheelEvent( TQWheelEvent * e )
{
- if( e->orientation() ==Qt::Vertical && vScrollBar && vScrollBar->isVisible() )
+ if( e->orientation() ==TQt::Vertical && vScrollBar && vScrollBar->isVisible() )
TQApplication::sendEvent( vScrollBar, e );
}
@@ -1443,7 +1443,7 @@ TQScrollBar *QtTableView::verticalScrollBar() const
{
QtTableView *that = (QtTableView*)this; // semantic const
if ( !vScrollBar ) {
- TQScrollBar *sb = new TQScrollBar( Qt::Vertical, that );
+ TQScrollBar *sb = new TQScrollBar( TQt::Vertical, that );
#ifndef TQT_NO_CURSOR
sb->setCursor( arrowCursor );
#endif
@@ -1474,7 +1474,7 @@ TQScrollBar *QtTableView::horizontalScrollBar() const
{
QtTableView *that = (QtTableView*)this; // semantic const
if ( !hScrollBar ) {
- TQScrollBar *sb = new TQScrollBar( Qt::Horizontal, that );
+ TQScrollBar *sb = new TQScrollBar( TQt::Horizontal, that );
#ifndef TQT_NO_CURSOR
sb->setCursor( arrowCursor );
#endif