diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:53:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:53:32 +0900 |
commit | ac30f16b60532c3d1ff474177bb36a073d51ceb4 (patch) | |
tree | 7c9ddd8632cb6258980bb5e04ad69482ded38c82 /src/clickablelabel.cpp | |
parent | 5665df9602807d84c8de673a2b4101f2e3a9fd89 (diff) | |
download | basket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.tar.gz basket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/clickablelabel.cpp')
-rw-r--r-- | src/clickablelabel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clickablelabel.cpp b/src/clickablelabel.cpp index 8d98ef0..7cc365f 100644 --- a/src/clickablelabel.cpp +++ b/src/clickablelabel.cpp @@ -22,7 +22,7 @@ void ClickableLabel::mousePressEvent(TQMouseEvent *event) { - if (event->button() & Qt::LeftButton) + if (event->button() & TQt::LeftButton) emit clicked(); } |