summaryrefslogtreecommitdiffstats
path: root/src/devices
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-05-06 14:22:52 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-05-06 14:22:52 -0500
commitae1ac3851e70f87bfc452da97812812c77f52c01 (patch)
tree3b514a55f96a6d2f73c90e3e0ff97c2295b645c5 /src/devices
parentc489d637fdbf11be5407f97641d91bf9505dae2d (diff)
downloadpiklab-ae1ac3851e70f87bfc452da97812812c77f52c01.tar.gz
piklab-ae1ac3851e70f87bfc452da97812812c77f52c01.zip
GCC 4.7 fixes.
Thanks to Francois Andriot.
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/base/device_group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/base/device_group.h b/src/devices/base/device_group.h
index 1ecc6d1..46bc62d 100644
--- a/src/devices/base/device_group.h
+++ b/src/devices/base/device_group.h
@@ -52,7 +52,7 @@ class Group : public GroupBase, public DataStreamer<DataType>
{
protected:
virtual void initSupported() {
- TQValueList<DataType *> list = fromCppString(dataStream(), dataSize());
+ TQValueList<DataType *> list = this->fromCppString(dataStream(), dataSize());
for (uint i=0; i<uint(list.count()); i++) addDevice(list[i]->name(), list[i], ::Group::Support::Tested);
}
virtual uint dataSize() const = 0;