]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/generic/callback.h
fixed gcc4 compile errors
[xonotic/netradiant.git] / libs / generic / callback.h
index ccc779e6ed7054027220397fe5d480e1ade4a5a0..7141da4ab7d95a6f092fe538d579c3beacea625b 100644 (file)
@@ -279,7 +279,7 @@ public:
   }
   result_type operator()() const
   {
-    return getThunk()(getEnvironment());
+    return Base::getThunk()(Base::getEnvironment());
   }
 };
 
@@ -325,7 +325,7 @@ public:
   }
   result_type operator()(FirstArgument firstArgument) const
   {
-    return getThunk()(getEnvironment(), firstArgument);
+    return Base::getThunk()(Base::getEnvironment(), firstArgument);
   }
 };
 
@@ -368,7 +368,7 @@ public:
   }
   result_type operator()(FirstArgument firstArgument, SecondArgument secondArgument) const
   {
-    return getThunk()(getEnvironment(), firstArgument, secondArgument);
+    return Base::getThunk()(Base::getEnvironment(), firstArgument, secondArgument);
   }
 };
 
@@ -424,7 +424,7 @@ public:
   }
   result_type operator()(FirstArgument firstArgument, SecondArgument secondArgument, ThirdArgument thirdArgument) const
   {
-    return getThunk()(getEnvironment(), firstArgument, secondArgument, thirdArgument);
+    return Base::getThunk()(Base::getEnvironment(), firstArgument, secondArgument, thirdArgument);
   }
 };