diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-12 16:10:04 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-12 16:10:04 +0100 |
commit | 70809c857d125cce1d100e88d7d8ed898669a9ee (patch) | |
tree | c1c44ff4881e26d12b0db40f5bcd141b7cc8674e /src/searchbar.h | |
parent | 1st implementation of colored progress loading urlbar (diff) | |
download | rekonq-70809c857d125cce1d100e88d7d8ed898669a9ee.tar.xz |
Fixing searchbar dimension && position
Diffstat (limited to 'src/searchbar.h')
-rw-r--r-- | src/searchbar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/searchbar.h b/src/searchbar.h index 92f20f8e..96ae282a 100644 --- a/src/searchbar.h +++ b/src/searchbar.h @@ -26,7 +26,7 @@ #include <KUrl> // Qt Includes -#include <QWidget> +#include <QtGui> class SearchBar : public QWidget { @@ -41,6 +41,9 @@ public: public slots: void searchNow(); +protected: + void resizeEvent( QResizeEvent *); + private: KLineEdit *m_lineEdit; |