diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-24 11:39:07 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-24 11:39:07 +0100 |
commit | fde7402105174421318e3556401fe2d5f8cda96b (patch) | |
tree | ecde7c2daaba33a0bfed0b4af011a65443d4f3cd /src/findbar.h | |
parent | Moved away the m_requestedUrl call, using currentFrame()->url(). (diff) | |
parent | Clean and optimize the findBar code. (diff) | |
download | rekonq-fde7402105174421318e3556401fe2d5f8cda96b.tar.xz |
Merge commit 'refs/merge-requests/95' of git://gitorious.org/rekonq/mainline into m95
Diffstat (limited to 'src/findbar.h')
-rw-r--r-- | src/findbar.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/findbar.h b/src/findbar.h index d56b8d25..8f220c92 100644 --- a/src/findbar.h +++ b/src/findbar.h @@ -35,11 +35,9 @@ // Qt Includes #include <QtGui/QWidget> #include <QtGui/QCheckBox> -#include <QtGui/QKeyEvent> // Forward Declarations class KMainWindow; -class QKeyEvent; class QString; @@ -52,15 +50,11 @@ public: ~FindBar(); KLineEdit *lineEdit() const; bool matchCase() const; + void notifyMatch(bool match); public slots: - void clear(); void show(); void hide(); - void notifyMatch(bool match); - -protected Q_SLOTS: - void keyPressEvent(QKeyEvent* event); signals: void searchString(const QString &); |