fix writeUints bug
This commit is contained in:
parent
d6348b8fb8
commit
7b5eb42b40
|
|
@ -729,7 +729,7 @@ void Configuration::writeUints()
|
|||
bool bSaveLoadTabOrder = ConfigBool("Gui", "LoadSaveTabOrder");
|
||||
|
||||
//write config
|
||||
for(auto itMap = Bools.cbegin(); itMap != Bools.cend(); ++itMap)
|
||||
for(auto itMap = Uints.cbegin(); itMap != Uints.cend(); ++itMap)
|
||||
{
|
||||
const QString & category = itMap.key();
|
||||
for(auto it = itMap.value().cbegin(); it != itMap.value().cend(); it++)
|
||||
|
|
|
|||
Loading…
Reference in New Issue