RHEL/Fedora: fix kdeedu 3.5.13 compilation with GCC 4.7

pull/3/head
Francois Andriot 12 years ago
parent 1e3575d0df
commit 63526834b5

@ -0,0 +1,17 @@
--- tdeedu/kiten/dict.h
+++ tdeedu/kiten/dict.h 2012-04-11 01:14:04.481645011 -0500
@@ -65,12 +65,12 @@
, 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
Loading…
Cancel
Save