diff options
| author | Peter Penz <[email protected]> | 2007-02-08 20:33:49 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-02-08 20:33:49 +0000 |
| commit | ee4e21530b21efe7a3b6fa108ec186f553ed4b65 (patch) | |
| tree | d4b892fa5a02542afd695fc5b905a38e8565dad0 /src/filterbar.cpp | |
| parent | abf8f1917d1ef044cf732eb873ce28bf805f27af (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.cpp | 8 |
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" |
