We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 8774e69 commit 08cacd4Copy full SHA for 08cacd4
src/server/qgsconfigcache.cpp
@@ -46,6 +46,7 @@ const QgsProject *QgsConfigCache::project( const QString &path )
46
if ( prj->read( path ) )
47
{
48
mProjectCache.insert( path, prj.release() );
49
+ mFileSystemWatcher.addPath( path );
50
}
51
52
@@ -93,6 +94,8 @@ QDomDocument *QgsConfigCache::xmlDocument( const QString &filePath )
93
94
95
void QgsConfigCache::removeChangedEntry( const QString &path )
96
97
+ mProjectCache.remove( path );
98
+
99
//xml document must be removed last, as other config cache destructors may require it
100
mXmlDocumentCache.remove( path );
101
0 commit comments