summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/updatesettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'installerbuilder/libinstaller/updatesettings.cpp')
-rw-r--r--installerbuilder/libinstaller/updatesettings.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/installerbuilder/libinstaller/updatesettings.cpp b/installerbuilder/libinstaller/updatesettings.cpp
index a8045a471..ac690f8f1 100644
--- a/installerbuilder/libinstaller/updatesettings.cpp
+++ b/installerbuilder/libinstaller/updatesettings.cpp
@@ -137,7 +137,6 @@ QList< Repository > UpdateSettings::repositories() const
Repository rep;
settings.setArrayIndex( i );
rep.setUrl( d->settings().value( QLatin1String( "url" ) ).toUrl() );
- rep.setRequired( d->settings().value( QLatin1String( "required" ) ).toBool() );
result.push_back( rep );
}
settings.endArray();
@@ -164,7 +163,6 @@ void UpdateSettings::setRepositories( const QList< Repository >& repositories )
const Repository& rep = repositories[ i ];
d->settings().setArrayIndex( i );
d->settings().setValue( QLatin1String( "url" ), rep.url() );
- d->settings().setValue( QLatin1String( "required" ), rep.required() );
}
d->settings().endArray();
}