mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-06 00:05:16 -04:00
rename Store into Registry
This commit is contained in:
parent
5b42d4ac2e
commit
6a64a556f0
@ -353,15 +353,15 @@ void QgsServer::handleRequest( QgsServerRequest& request, QgsServerResponse& res
|
|||||||
QString configFilePath = configPath( *sConfigFilePath, parameterMap );
|
QString configFilePath = configPath( *sConfigFilePath, parameterMap );
|
||||||
|
|
||||||
// load the project if needed and not empty
|
// load the project if needed and not empty
|
||||||
auto projectIt = mProjectStore.find( configFilePath );
|
auto projectIt = mProjectRegistry.find( configFilePath );
|
||||||
if ( projectIt == mProjectStore.constEnd() )
|
if ( projectIt == mProjectRegistry.constEnd() )
|
||||||
{
|
{
|
||||||
// load the project
|
// load the project
|
||||||
QgsProject* project = new QgsProject();
|
QgsProject* project = new QgsProject();
|
||||||
project->setFileName( configFilePath );
|
project->setFileName( configFilePath );
|
||||||
if ( project->read() )
|
if ( project->read() )
|
||||||
{
|
{
|
||||||
projectIt = mProjectStore.insert( configFilePath, project );
|
projectIt = mProjectRegistry.insert( configFilePath, project );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -133,7 +133,7 @@ class SERVER_EXPORT QgsServer
|
|||||||
static QgsServerSettings sSettings;
|
static QgsServerSettings sSettings;
|
||||||
|
|
||||||
// map of QgsProject
|
// map of QgsProject
|
||||||
QMap<QString, const QgsProject*> mProjectStore;
|
QMap<QString, const QgsProject*> mProjectRegistry;
|
||||||
};
|
};
|
||||||
#endif // QGSSERVER_H
|
#endif // QGSSERVER_H
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user