diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 15:24:04 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 21:41:40 +0900 |
commit | 0a7a004c3663b3d38d3107b839b1260c85a4ba10 (patch) | |
tree | a742efa036fbade5f770286ce718f5297197cd8a /src | |
parent | f5c63412a8d17e34b28e4f050d5bbdc3ff8466ea (diff) | |
download | kvkbd-0a7a004c3663b3d38d3107b839b1260c85a4ba10.tar.gz kvkbd-0a7a004c3663b3d38d3107b839b1260c85a4ba10.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0bd30c3c2ee4250bbe97ad7e72da478571bb55d1)
Diffstat (limited to 'src')
-rw-r--r-- | src/MainWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MainWidget.cpp b/src/MainWidget.cpp index b4a96c9..2cdb056 100644 --- a/src/MainWidget.cpp +++ b/src/MainWidget.cpp @@ -991,7 +991,7 @@ KbdTray::KbdTray(TQWidget *parent, const char *name) : KSystemTray(parent,name) void KbdTray::mousePressEvent(TQMouseEvent *e) { - if (e->button()==Qt::LeftButton) { + if (e->button()==TQt::LeftButton) { TQWidget *p = parentWidget(); if (p){ if (p->isShown()){ |