-rw-r--r-- | korganizer/searchdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/korganizer/searchdialog.cpp b/korganizer/searchdialog.cpp index 5bd7c6f..72ee1d2 100644 --- a/korganizer/searchdialog.cpp +++ b/korganizer/searchdialog.cpp @@ -373,23 +373,25 @@ void SearchDialog::search(const QRegExp &re) if ( journ->dtStart().date() <= mEndDate->date() &&journ->dtStart().date() >= mStartDate->date()) { #if QT_VERSION >= 300 if (re.search(journ->description()) != -1) #else if (re.match(journ->description()) != -1) #endif { mMatchedJournals.append(journ); continue; } } } } } +/* void SearchDialog::keyPressEvent ( QKeyEvent *e) { e->ignore(); } +*/ //mMatchedJournals; |