initialize dataChanged variables in SettingsData base class

This commit is contained in:
jp9000
2013-12-12 22:16:45 -07:00
parent 375bc18377
commit 40f922ca37

View File

@@ -24,6 +24,7 @@ protected:
bool dataChanged;
public:
inline SettingsData() : dataChanged(false) {}
virtual void Apply()=0;
inline bool DataChanged() const {return dataChanged;}