diff options
Diffstat (limited to 'kalarm/lib/radiobutton.cpp')
-rw-r--r-- | kalarm/lib/radiobutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/lib/radiobutton.cpp b/kalarm/lib/radiobutton.cpp index 8eae0825e..e9f604306 100644 --- a/kalarm/lib/radiobutton.cpp +++ b/kalarm/lib/radiobutton.cpp @@ -86,7 +86,7 @@ void RadioButton::mousePressEvent(TQMouseEvent* e) if (mReadOnly) { // Swallow up the event if it's the left button - if (e->button() == Qt::LeftButton) + if (e->button() == TQt::LeftButton) return; } TQRadioButton::mousePressEvent(e); @@ -97,7 +97,7 @@ void RadioButton::mouseReleaseEvent(TQMouseEvent* e) if (mReadOnly) { // Swallow up the event if it's the left button - if (e->button() == Qt::LeftButton) + if (e->button() == TQt::LeftButton) return; } TQRadioButton::mouseReleaseEvent(e); |