# HG changeset patch # User František Kučera # Date 1537044736 -7200 # Node ID 2057919937fa75d8badb1bb2a651587563a9b407 # Parent fc1e746e26a5edf1951ec3cbbbdaaaef36ab8fa3 AttributeMetadata: pImpl / d-pointer version but with memory-leak and unwanted empty constructor diff -r fc1e746e26a5 -r 2057919937fa src/TabularPrefetchingHandler.h --- a/src/TabularPrefetchingHandler.h Sun Sep 09 21:01:33 2018 +0200 +++ b/src/TabularPrefetchingHandler.h Sat Sep 15 22:52:16 2018 +0200 @@ -165,9 +165,9 @@ columnNames.resize(columnCount); columnWidths.resize(columnCount, 0); for (int i = 0; i < attributes.size(); i++) { - columnNames[i] = attributes[i].attributeName; - columnTypes[i] = attributes[i].typeId; - columnTypeCodes[i] = attributes[i].typeName; + columnNames[i] = attributes[i].getAttributeName(); + columnTypes[i] = attributes[i].getTypeId(); + columnTypeCodes[i] = attributes[i].getTypeName(); } }