0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 00:33:02 +03:00

fix #12 Not all members of a class are initialized inside the constructor. Consider inspecting: m_dataManager. lrdatasourcemanager.h 74

This commit is contained in:
Arin Alexander 2016-02-20 12:12:14 +03:00
parent 9b642c9d02
commit 5e95aceeb7

View File

@ -70,7 +70,7 @@ void DataNode::clear()
DataSourceModel::DataSourceModel(DataSourceManager* dataManager) DataSourceModel::DataSourceModel(DataSourceManager* dataManager)
:m_rootNode(new DataNode()) :m_dataManager(0), m_rootNode(new DataNode())
{ {
setDataSourceManager(dataManager); setDataSourceManager(dataManager);
} }