diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-06 23:46:40 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-05-06 23:46:40 +0300 |
commit | 548e0a6bc35d4c776039f7467c0d67eabf9ef46a (patch) | |
tree | ff9ecf6914accab0ee64793672cbdc5aeefa01d1 /tools.h | |
parent | 61b085f1d12ef86807f779f57671fa1e7a5a14c0 (diff) | |
download | vdr-plugin-epgfixer-548e0a6bc35d4c776039f7467c0d67eabf9ef46a.tar.gz vdr-plugin-epgfixer-548e0a6bc35d4c776039f7467c0d67eabf9ef46a.tar.bz2 |
Fix compiling with g++-4.7. Fix and improve Makefile.
Diffstat (limited to 'tools.h')
-rw-r--r-- | tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ protected: cReadLine ReadLine; while ((s = ReadLine.Read(f)) != NULL) { if (!isempty(s)) { - Add(new T()); + this->Add(new T()); cList<T>::Last()->SetFromString(s, true); } } |