aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Signal.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2010-05-06 18:25:47 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2010-05-06 18:25:47 (GMT)
commit22fa5f544b35b5022769e0d244a3b7ec13f0e8c5 (patch)
tree79daae9921e89a14dc49b589e88baeac2ba2e0dc /src/FbTk/Signal.hh
parenta443d461173e0ccf31b012117b13c65ea615648b (diff)
downloadfluxbox-22fa5f544b35b5022769e0d244a3b7ec13f0e8c5.zip
fluxbox-22fa5f544b35b5022769e0d244a3b7ec13f0e8c5.tar.bz2
bugfix: added missing 'virtual' keyword, otherwise fluxbox crashes with 'pure virtual method called'
Diffstat (limited to 'src/FbTk/Signal.hh')
-rw-r--r--src/FbTk/Signal.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/Signal.hh b/src/FbTk/Signal.hh
index af9b043..06136ba 100644
--- a/src/FbTk/Signal.hh
+++ b/src/FbTk/Signal.hh
@@ -274,7 +274,7 @@ public:
274 274
275protected: 275protected:
276 276
277 void disconnect(SigImpl::SignalHolder& signal) { 277 virtual void disconnect(SigImpl::SignalHolder& signal) {
278 m_connections.erase(&signal); 278 m_connections.erase(&signal);
279 } 279 }
280 280