]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxfunctional.h
Create a grfx::Loader class and so move large chunks of code out of
[lyx.git] / src / support / lyxfunctional.h
index af2107413dfc217c1183a712097acbbdab48af59..0d129c6c63aea22be32fa614a9b9176f37724cb5 100644 (file)
@@ -14,7 +14,6 @@
 
 namespace lyx {
 
-
 template<class R, class C, class A>
 class class_fun_t {
 public:
@@ -60,7 +59,7 @@ class_fun(C & c, R(C::*f)(A))
 
 
 template <class C, class A> void_class_fun_t<C, A>
-class_fun(C & c, void(C::*f)(A))
+void_class_fun(C & c, void(C::*f)(A))
 {
        return void_class_fun_t<C, A>(c, f);
 }