]> cloud.milkyroute.net Git - dolphin.git/commitdiff
SVN_SILENT: Use consistent member naming within Dolphin
authorPeter Penz <peter.penz19@gmail.com>
Sun, 27 Jun 2010 17:45:06 +0000 (17:45 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Sun, 27 Jun 2010 17:45:06 +0000 (17:45 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=1143415

src/search/searchoptiondialogbox.cpp
src/search/searchoptiondialogbox.h

index b1d2a6d54958bb96fad3453ec6740aab2d2a810c..ea59c23439925e0a085389895f70607e443ab925 100644 (file)
@@ -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)
index a3ab092aed356e3806ab73e4394bc70979b01e74..2d570c31ef3e5076e5e4b009567ed6336edc5318 100644 (file)
@@ -37,6 +37,6 @@ protected slots:
     void slotTextChanged(const QString& text);
 
 private:
-    KLineEdit* mLineEdit;
+    KLineEdit* m_lineEdit;
 };
 #endif