┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.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/dolphinview.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/dolphinview.cpp')
-rw-r--r--src/dolphinview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 93cda320b..9b2286c87 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -116,7 +116,7 @@ DolphinView::DolphinView(DolphinMainWindow* mainWindow,
m_filterBar->hide();
connect(m_filterBar, SIGNAL(filterChanged(const QString&)),
this, SLOT(changeNameFilter(const QString&)));
- connect(m_filterBar, SIGNAL(closed()),
+ connect(m_filterBar, SIGNAL(closeRequest()),
this, SLOT(closeFilterBar()));
m_topLayout->addWidget(m_urlNavigator);