diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 23:06:51 +0900 |
commit | 945085d2d242018111b8bb1e1082ebe2021b720b (patch) | |
tree | 9162dfce141628f7e5d7ffc311dc0df860a6b29b /src/modules/notifier | |
parent | 776d38202f9be592e1b6b99dbc81a64ee584c5c0 (diff) | |
download | kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.tar.gz kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9577f4de07539fb2464a1499d45b25993c5cea46)
Diffstat (limited to 'src/modules/notifier')
-rw-r--r-- | src/modules/notifier/notifierwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/notifier/notifierwindow.cpp b/src/modules/notifier/notifierwindow.cpp index fa55316e..634af964 100644 --- a/src/modules/notifier/notifierwindow.cpp +++ b/src/modules/notifier/notifierwindow.cpp @@ -768,11 +768,11 @@ void KviNotifierWindow::mousePressEvent(TQMouseEvent * e) m_pntClick = e->pos(); - if(e->button() == Qt::RightButton) + if(e->button() == TQt::RightButton) { contextPopup(mapToGlobal(e->pos())); return; - } else if(e->button() == Qt::LeftButton) { + } else if(e->button() == TQt::LeftButton) { m_bLeftButtonIsPressed = true; } @@ -1104,7 +1104,7 @@ void KviNotifierWindow::redrawWindow() inline void KviNotifierWindow::setCursor(int cur) { if (m_cursor.shape() != cur) { if(TQApplication::overrideCursor()) TQApplication::restoreOverrideCursor(); - m_cursor.setShape((Qt::CursorShape)cur); + m_cursor.setShape((TQt::CursorShape)cur); TQApplication::setOverrideCursor(m_cursor); } else if (cur==-1) if(TQApplication::overrideCursor()) TQApplication::restoreOverrideCursor(); |