┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/filterbar.h
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.h
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.h')
-rw-r--r--src/filterbar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filterbar.h b/src/filterbar.h
index b1d60232c..2dd02d28d 100644
--- a/src/filterbar.h
+++ b/src/filterbar.h
@@ -51,7 +51,7 @@ signals:
/**
* Emitted as soon as the filterbar should get closed.
*/
- void closed();
+ void closeRequest();
protected:
virtual void hideEvent(QHideEvent* event);
@@ -59,7 +59,7 @@ protected:
virtual void keyReleaseEvent(QKeyEvent* event);
private slots:
- void emitClose();
+ void emitCloseRequest();
private:
QLabel* m_filter;