diff options
| author | Peter Penz <[email protected]> | 2010-06-27 17:45:06 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-06-27 17:45:06 +0000 |
| commit | 40d80643e6f2195ac50799c8c1898d99169e5ee8 (patch) | |
| tree | c7c50534e0301f8b5626c7e2843f9dd1828d43a6 | |
| parent | 4c5a38d2862b86f1b249f967bc7cfe7d59337c2f (diff) | |
SVN_SILENT: Use consistent member naming within Dolphin
svn path=/trunk/KDE/kdebase/apps/; revision=1143415
| -rw-r--r-- | src/search/searchoptiondialogbox.cpp | 12 | ||||
| -rw-r--r-- | src/search/searchoptiondialogbox.h | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/search/searchoptiondialogbox.cpp b/src/search/searchoptiondialogbox.cpp index b1d2a6d54..ea59c2343 100644 --- a/src/search/searchoptiondialogbox.cpp +++ b/src/search/searchoptiondialogbox.cpp @@ -30,14 +30,14 @@ SearchOptionDialogBox::SearchOptionDialogBox(QWidget* parent) : QWidget* container = new QWidget(this); QLabel* label = new QLabel(i18nc("@label", "Name:"), container); - mLineEdit = new KLineEdit(container); - mLineEdit->setMinimumWidth(250); - mLineEdit->setClearButtonShown(true); + m_lineEdit = new KLineEdit(container); + m_lineEdit->setMinimumWidth(250); + m_lineEdit->setClearButtonShown(true); - connect(mLineEdit, SIGNAL(textChanged(const QString&)), SLOT(slotTextChanged(const QString&))); + connect(m_lineEdit, SIGNAL(textChanged(const QString&)), SLOT(slotTextChanged(const QString&))); QHBoxLayout* layout = new QHBoxLayout(container); layout->addWidget(label, Qt::AlignRight); - layout->addWidget(mLineEdit); + layout->addWidget(m_lineEdit); setMainWidget(container); setCaption(i18nc("@title:window", "Save Search Options")); @@ -60,7 +60,7 @@ SearchOptionDialogBox::~SearchOptionDialogBox() QString SearchOptionDialogBox::text() const { - return mLineEdit->text(); + return m_lineEdit->text(); } void SearchOptionDialogBox::slotTextChanged(const QString& text) diff --git a/src/search/searchoptiondialogbox.h b/src/search/searchoptiondialogbox.h index a3ab092ae..2d570c31e 100644 --- a/src/search/searchoptiondialogbox.h +++ b/src/search/searchoptiondialogbox.h @@ -37,6 +37,6 @@ protected slots: void slotTextChanged(const QString& text); private: - KLineEdit* mLineEdit; + KLineEdit* m_lineEdit; }; #endif |
