From: Peter Penz Date: Sun, 27 Jun 2010 17:45:06 +0000 (+0000) Subject: SVN_SILENT: Use consistent member naming within Dolphin X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/40d80643e6f2195ac50799c8c1898d99169e5ee8 SVN_SILENT: Use consistent member naming within Dolphin svn path=/trunk/KDE/kdebase/apps/; revision=1143415 --- 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