summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-06 23:46:40 +0300
committerMatti Lehtimäki <matti.lehtimaki@gmail.com>2012-05-06 23:46:40 +0300
commit548e0a6bc35d4c776039f7467c0d67eabf9ef46a (patch)
treeff9ecf6914accab0ee64793672cbdc5aeefa01d1 /tools.h
parent61b085f1d12ef86807f779f57671fa1e7a5a14c0 (diff)
downloadvdr-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools.h b/tools.h
index dfcee30..bf49fac 100644
--- a/tools.h
+++ b/tools.h
@@ -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);
}
}