diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 15:26:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 22:40:56 +0900 |
commit | 357be4cdf198a18ebacde83d2fdbe487b49619b1 (patch) | |
tree | 77463e84859fef245d356a3de7885fe7d2ec9ad7 | |
parent | 0cdd57001ae31fc806aafb6ae95b6bb2bdd1eb91 (diff) | |
download | kcpuload-357be4cdf198a18ebacde83d2fdbe487b49619b1.tar.gz kcpuload-357be4cdf198a18ebacde83d2fdbe487b49619b1.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 47298eeee7a5a831a6df6dba768ef7f05ebca108)
-rw-r--r-- | src/statpopup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statpopup.cpp b/src/statpopup.cpp index 306d537..81cbdce 100644 --- a/src/statpopup.cpp +++ b/src/statpopup.cpp @@ -404,7 +404,7 @@ void StatPopup::paintEvent(TQPaintEvent*) { } void StatPopup::mousePressEvent(TQMouseEvent* e) { - if(e->button() == Qt::RightButton) { + if(e->button() == TQt::RightButton) { // Hide the pop-up. hide(); } else { |