summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-11 09:24:15 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 04:36:13 +0200
commitc51a55aa4b03a057214a33a281b67efc949a65e6 (patch)
treee67616f7f45fa4f985a76da6e96d2087d790058f
parent418634c67cb069d65f035b9f8ea19987788110ec (diff)
downloadtdeedu-c51a55aa4b03a057214a33a281b67efc949a65e6.tar.gz
tdeedu-c51a55aa4b03a057214a33a281b67efc949a65e6.zip
Updated to build with gcc 4.7.
(cherry picked from commit 6be9bf3cfc0d856b6c2535d9eb91264c77fe653e)
-rw-r--r--kiten/dict.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kiten/dict.h b/kiten/dict.h
index 80a762d8..ac135d3b 100644
--- a/kiten/dict.h
+++ b/kiten/dict.h
@@ -65,12 +65,12 @@ template<class T> Array<T>::Array(T *d, int s)
, data(d)
, dataSize(s)
{
- setRawData(data, dataSize / sizeof(T));
+ this->setRawData(data, dataSize / sizeof(T));
}
template<class T> Array<T>::~Array()
{
- resetRawData(data, dataSize / sizeof(T));
+ this->resetRawData(data, dataSize / sizeof(T));
}
// File manages all the files, pointers, and memory management associated