diff options
| author | Peter Penz <[email protected]> | 2010-01-25 14:39:47 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-01-25 14:39:47 +0000 |
| commit | 6ea2aec5aec41850396a4820212143fdf7a6a3c0 (patch) | |
| tree | b665bee9b6f6dacf2d66f8dbd97643435aaf97e2 /src/search/searchoptiondialogbox.h | |
| parent | 8dd3b9d3be28ab5b3faa851919cc794e3a338154 (diff) | |
SVN_SILENT: minor coding style fixes
svn path=/trunk/KDE/kdebase/apps/; revision=1080074
Diffstat (limited to 'src/search/searchoptiondialogbox.h')
| -rw-r--r-- | src/search/searchoptiondialogbox.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/search/searchoptiondialogbox.h b/src/search/searchoptiondialogbox.h index dd1c18659..a3ab092ae 100644 --- a/src/search/searchoptiondialogbox.h +++ b/src/search/searchoptiondialogbox.h @@ -26,15 +26,17 @@ class KLineEdit; class SearchOptionDialogBox : public KDialog { Q_OBJECT + public: - SearchOptionDialogBox( QWidget *widget); - ~SearchOptionDialogBox(); + SearchOptionDialogBox(QWidget* parent); + virtual ~SearchOptionDialogBox(); QString text() const; protected slots: - void slotTextChanged( const QString & ); + void slotTextChanged(const QString& text); + private: - KLineEdit *mLineEdit; + KLineEdit* mLineEdit; }; #endif |
