1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

OP-99 Import/Export: Reflect the format-changes from 1599 in the version-number.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1600 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
erhard 2010-09-12 21:05:35 +00:00 committed by erhard
parent f826ee0a20
commit be1dc09c29

View File

@ -46,7 +46,7 @@ using namespace Core;
UAVGadgetInstanceManager::UAVGadgetInstanceManager(QObject *parent) :
QObject(parent),
m_versionUAVGadgetConfigurations("1.0.0")
m_versionUAVGadgetConfigurations("1.1.0")
{
m_pm = ExtensionSystem::PluginManager::instance();
QList<IUAVGadgetFactory*> factories = m_pm->getObjects<IUAVGadgetFactory>();
@ -80,11 +80,13 @@ void UAVGadgetInstanceManager::readConfigurations(QSettings *qs)
// If version is not set, assume its a old version before readable config.
configInfo.setVersion("1.0.0");
}
/*
if ( configInfo.standardVersionHandlingIsNotOK(m_versionUAVGadgetConfigurations) ){
// We are in trouble now. User wants us to quit the import.
qs->endGroup();
return;
}
*/
readConfigs_1_0_0(qs);
qs->endGroup();
createOptionsPages();