diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:32:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:32:04 +0900 |
commit | 5efc277625507809813e82005f7e47f004c666b6 (patch) | |
tree | 52282f27d3856e18ad12308e7881e840f0a96047 /src/k3bflatbutton.cpp | |
parent | 95a45a4f4fadd0054cc11f4f2f57da17d81c7bdd (diff) | |
download | k3b-5efc277625507809813e82005f7e47f004c666b6.tar.gz k3b-5efc277625507809813e82005f7e47f004c666b6.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/k3bflatbutton.cpp')
-rw-r--r-- | src/k3bflatbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3bflatbutton.cpp b/src/k3bflatbutton.cpp index eafc637..9c10fba 100644 --- a/src/k3bflatbutton.cpp +++ b/src/k3bflatbutton.cpp @@ -102,7 +102,7 @@ void K3bFlatButton::leaveEvent( TQEvent* ) void K3bFlatButton::mousePressEvent( TQMouseEvent* e ) { - if( e->button() == Qt::LeftButton ) { + if( e->button() == TQt::LeftButton ) { emit pressed(); m_pressed = true; } @@ -113,7 +113,7 @@ void K3bFlatButton::mousePressEvent( TQMouseEvent* e ) void K3bFlatButton::mouseReleaseEvent( TQMouseEvent* e ) { - if( e->button() == Qt::LeftButton ) { + if( e->button() == TQt::LeftButton ) { if( m_pressed ) emit clicked(); m_pressed = false; |