aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fluxbox.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 16992b7..e564d42 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -211,10 +211,6 @@ struct CallMemFunWithRefArg : std::unary_function<Type, ResultType> {
211 m_arg(arg), 211 m_arg(arg),
212 m_func(func) { } 212 m_func(func) { }
213 213
214 ResultType operator()(Type p) const {
215 (p.*m_func)(m_arg);
216 }
217
218 ResultType operator()(Type* p) const { 214 ResultType operator()(Type* p) const {
219 (*p.*m_func)(m_arg); 215 (*p.*m_func)(m_arg);
220 } 216 }