summaryrefslogtreecommitdiff
path: root/src/urllineedit.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2008-11-17 00:42:18 +0100
committerAndrea Diamantini <adjam7@gmail.com>2008-11-17 00:42:18 +0100
commit47a69e593d2d816374d263076b87a9ffb987459a (patch)
treec805a6314dd1377357f669b3d60b77b68175a5b7 /src/urllineedit.cpp
parentsearchbar --> findbar (diff)
downloadrekonq-47a69e593d2d816374d263076b87a9ffb987459a.tar.xz
Ported search bar. 1st implementation. For Now, just Google Search.
Diffstat (limited to 'src/urllineedit.cpp')
-rw-r--r--src/urllineedit.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/urllineedit.cpp b/src/urllineedit.cpp
index bd48bb03..88ce28c4 100644
--- a/src/urllineedit.cpp
+++ b/src/urllineedit.cpp
@@ -64,10 +64,8 @@ ExLineEdit::ExLineEdit(QWidget *parent)
// clearButton
m_clearButton = new ClearButton(this);
- connect(m_clearButton, SIGNAL(clicked()),
- m_lineEdit, SLOT(clear()));
- connect(m_lineEdit, SIGNAL(textChanged(const QString&)),
- m_clearButton, SLOT(textChanged(const QString&)));
+ connect(m_clearButton, SIGNAL(clicked()), m_lineEdit, SLOT(clear()));
+ connect(m_lineEdit, SIGNAL(textChanged(const QString&)), m_clearButton, SLOT(textChanged(const QString&)));
}
void ExLineEdit::setLeftWidget(QWidget *widget)