diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:08:51 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:08:51 +0900 |
commit | 003f0d8657afce5df445625f200dcc62c60201cc (patch) | |
tree | 73c89aebdb150028990c8ec439c86a7dc007ab94 | |
parent | f56d47b007ab861312a45c1806e2e6b70ad4e847 (diff) | |
download | kerberostray-003f0d8657afce5df445625f200dcc62c60201cc.tar.gz kerberostray-003f0d8657afce5df445625f200dcc62c60201cc.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/toplevel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/toplevel.cpp b/src/toplevel.cpp index abbff54..b848405 100644 --- a/src/toplevel.cpp +++ b/src/toplevel.cpp @@ -327,10 +327,10 @@ void TopLevel::resizeEvent (TQResizeEvent *) /** Handle mousePressEvent */ void TopLevel::mousePressEvent(TQMouseEvent *event) { - if (event->button() == Qt::LeftButton) { + if (event->button() == TQt::LeftButton) { showTicketList(); } - else if (event->button() == Qt::RightButton) { + else if (event->button() == TQt::RightButton) { updateMenu(); menu->popup(TQCursor::pos()); } |