diff options
Diffstat (limited to 'kalarm/lib/lineedit.cpp')
-rw-r--r-- | kalarm/lib/lineedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/lib/lineedit.cpp b/kalarm/lib/lineedit.cpp index 4e40e2c7d..f561540ef 100644 --- a/kalarm/lib/lineedit.cpp +++ b/kalarm/lib/lineedit.cpp @@ -99,8 +99,8 @@ void LineEdit::dragEnterEvent(TQDragEnterEvent* e) e->accept(false); // don't accept "text/calendar" objects e->accept(TQTextDrag::canDecode(e) || KURLDrag::canDecode(e) - || mType != Url && KPIM::MailListDrag::canDecode(e) - || mType == Emails && KVCardDrag::canDecode(e)); + || (mType != Url && KPIM::MailListDrag::canDecode(e)) + || (mType == Emails && KVCardDrag::canDecode(e))); } void LineEdit::dropEvent(TQDropEvent* e) |