┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/search/searchoptiondialogbox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/search/searchoptiondialogbox.cpp b/src/search/searchoptiondialogbox.cpp
index 1abae35f6..b1d2a6d54 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);
- KLineEdit* lineEdit = new KLineEdit(container);
- lineEdit->setMinimumWidth(250);
- lineEdit->setClearButtonShown(true);
+ mLineEdit = new KLineEdit(container);
+ mLineEdit->setMinimumWidth(250);
+ mLineEdit->setClearButtonShown(true);
- connect(lineEdit, SIGNAL(textChanged(const QString&)), SLOT(slotTextChanged(const QString&)));
+ connect(mLineEdit, SIGNAL(textChanged(const QString&)), SLOT(slotTextChanged(const QString&)));
QHBoxLayout* layout = new QHBoxLayout(container);
layout->addWidget(label, Qt::AlignRight);
- layout->addWidget(lineEdit);
+ layout->addWidget(mLineEdit);
setMainWidget(container);
setCaption(i18nc("@title:window", "Save Search Options"));