┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/filterbar.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-02-08 20:33:49 +0000
committerPeter Penz <[email protected]>2007-02-08 20:33:49 +0000
commitee4e21530b21efe7a3b6fa108ec186f553ed4b65 (patch)
treed4b892fa5a02542afd695fc5b905a38e8565dad0 /src/filterbar.cpp
parentabf8f1917d1ef044cf732eb873ce28bf805f27af (diff)
Fixed issue that the filterbar and the menu state have not been synchronized (a not existing signal name has been used)
svn path=/trunk/playground/utils/dolphin/; revision=631709
Diffstat (limited to 'src/filterbar.cpp')
-rw-r--r--src/filterbar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filterbar.cpp b/src/filterbar.cpp
index 99616c29e..cdb1b713b 100644
--- a/src/filterbar.cpp
+++ b/src/filterbar.cpp
@@ -60,7 +60,7 @@ FilterBar::FilterBar(QWidget* parent) :
connect(m_filterInput, SIGNAL(textChanged(const QString&)),
this, SIGNAL(filterChanged(const QString&)));
- connect(m_close, SIGNAL(clicked()), this, SLOT(emitClose()));
+ connect(m_close, SIGNAL(clicked()), this, SLOT(emitCloseRequest()));
}
FilterBar::~FilterBar()
@@ -86,13 +86,13 @@ void FilterBar::keyReleaseEvent(QKeyEvent* event)
{
QWidget::keyReleaseEvent(event);
if ((event->key() == Qt::Key_Escape)) {
- emitClose();
+ emitCloseRequest();
}
}
-void FilterBar::emitClose()
+void FilterBar::emitCloseRequest()
{
- emit close();
+ emit closeRequest();
}
#include "filterbar.moc"