diff options
| author | 2007-02-09 14:25:15 +0000 | |
|---|---|---|
| committer | 2007-02-09 14:25:15 +0000 | |
| commit | ab11d4864e27e05b76c95f3f66ef774316db2ba7 (patch) | |
| tree | 53222baae38e916cc09d8e28811bbde7b9a79db1 /src/modules/notifier | |
| parent | quick fix (diff) | |
| download | KVIrc-ab11d4864e27e05b76c95f3f66ef774316db2ba7.tar.gz KVIrc-ab11d4864e27e05b76c95f3f66ef774316db2ba7.tar.bz2 KVIrc-ab11d4864e27e05b76c95f3f66ef774316db2ba7.zip | |
More Qt4 port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@334 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier')
| -rw-r--r-- | src/modules/notifier/notifierwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/notifier/notifierwindow.cpp b/src/modules/notifier/notifierwindow.cpp index dcaa44f84..d6e1045e7 100644 --- a/src/modules/notifier/notifierwindow.cpp +++ b/src/modules/notifier/notifierwindow.cpp @@ -713,11 +713,11 @@ void KviNotifierWindow::mousePressEvent(QMouseEvent * e) m_pntClick = e->pos(); - if(e->button() == RightButton) + if(e->button() == Qt::RightButton) { contextPopup(e->pos()); return; - } else if(e->button() == LeftButton) { + } else if(e->button() == Qt::LeftButton) { m_bLeftButtonIsPressed = true; } |
