1
0
Fork 0

fix writeUints bug

This commit is contained in:
cnsheds 2020-12-01 22:06:36 +08:00 committed by Duncan Ogilvie
parent d6348b8fb8
commit 7b5eb42b40
1 changed files with 1 additions and 1 deletions

View File

@ -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++)