What version of the database are we using?
| 1191 | |
| 1192 | // What version of the database are we using? |
| 1193 | int Global::getDatabaseVersion() { |
| 1194 | settings->beginGroup("SaveState"); |
| 1195 | int value = settings->value("databaseVersion", 1).toInt(); |
| 1196 | settings->endGroup(); |
| 1197 | return value; |
| 1198 | } |
| 1199 | |
| 1200 | |
| 1201 | // What version of the database are we using? |
no test coverage detected