Skip to content

Commit

Permalink
Fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Mar 26, 2024
1 parent cad2407 commit 96a3700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server/qgsconfigcache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ void QgsConfigCache::removeEntry( const QString &path )

mStrategy->entryRemoved( path );

emit projectRemovedFromCache(path);
emit projectRemovedFromCache( path );
}

// slots
Expand Down
2 changes: 1 addition & 1 deletion src/server/qgsserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ bool QgsServer::init()
// Initialize config cache
QgsConfigCache::initialize( sSettings );

QObject::connect(QgsConfigCache::instance(), &QgsConfigCache::projectRemovedFromCache, sCapabilitiesCache, &QgsCapabilitiesCache::removeChangedEntry);
QObject::connect( QgsConfigCache::instance(), &QgsConfigCache::projectRemovedFromCache, sCapabilitiesCache, &QgsCapabilitiesCache::removeChangedEntry );

sInitialized = true;
QgsMessageLog::logMessage( QStringLiteral( "Server initialized" ), QStringLiteral( "Server" ), Qgis::MessageLevel::Info );
Expand Down

0 comments on commit 96a3700

Please sign in to comment.