summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch')
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch
new file mode 100644
index 0000000..9a371a7
--- /dev/null
+++ b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch
@@ -0,0 +1,29 @@
+--- include/csutil/blockallocator.h.ori 2012-07-18 16:20:00.460841926 +0200
++++ include/csutil/blockallocator.h 2012-07-18 17:02:35.940975474 +0200
+@@ -193,7 +193,7 @@
+ ~csBlockAllocator()
+ {
+ ObjectDispose dispose (*this, false);
+- DisposeAll (dispose);
++ this->DisposeAll (dispose);
+ }
+
+ /**
+@@ -204,7 +204,7 @@
+ void Empty ()
+ {
+ ObjectDispose dispose (*this, true);
+- FreeAll (dispose);
++ this->FreeAll (dispose);
+ }
+
+ /**
+@@ -215,7 +215,7 @@
+ void DeleteAll ()
+ {
+ ObjectDispose dispose (*this, true);
+- DisposeAll (dispose);
++ this->DisposeAll (dispose);
+ }
+
+ /**