summaryrefslogtreecommitdiffstats
path: root/src/modules/notifier/notifierwindow.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 22:47:48 +0900
commit9577f4de07539fb2464a1499d45b25993c5cea46 (patch)
tree61e334870fb8bbdb96a67452e974b13e09cb0038 /src/modules/notifier/notifierwindow.cpp
parent87c77000cf1838c2695e7944d4f205ffb9fb44b4 (diff)
downloadkvirc-9577f4de07539fb2464a1499d45b25993c5cea46.tar.gz
kvirc-9577f4de07539fb2464a1499d45b25993c5cea46.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/notifier/notifierwindow.cpp')
-rw-r--r--src/modules/notifier/notifierwindow.cpp6
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();