mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Fix indent
This commit is contained in:
parent
0150dfb728
commit
fc7c0f0560
@ -44,8 +44,8 @@ class QgsServiceModule
|
|||||||
* Ask module to registe all provided services
|
* Ask module to registe all provided services
|
||||||
* @param registry QgsServiceRegistry
|
* @param registry QgsServiceRegistry
|
||||||
*/
|
*/
|
||||||
virtual void registerSelf( QgsServiceRegistry& registry,
|
virtual void registerSelf( QgsServiceRegistry& registry,
|
||||||
QgsServerInterface* serverIface = nullptr ) = 0;
|
QgsServerInterface* serverIface = nullptr ) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ void QgsServiceNativeLoader::loadModules( const QString& modulePath, QgsServiceR
|
|||||||
moduleDir.setNameFilters( QStringList( "*.so" ) );
|
moduleDir.setNameFilters( QStringList( "*.so" ) );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
qDebug() << QString( "Checking %1 for native services modules" ).arg( moduleDir.path() );
|
qDebug() << QString( "Checking %1 for native services modules" ).arg( moduleDir.path() );
|
||||||
//QgsDebugMsg( QString( "Checking %1 for native services modules" ).arg( moduleDir.path() ) );
|
//QgsDebugMsg( QString( "Checking %1 for native services modules" ).arg( moduleDir.path() ) );
|
||||||
|
|
||||||
Q_FOREACH ( const QFileInfo& fi, moduleDir.entryInfoList() )
|
Q_FOREACH ( const QFileInfo& fi, moduleDir.entryInfoList() )
|
||||||
@ -98,7 +98,7 @@ QgsServiceModule* QgsServiceNativeLoader::loadNativeModule( const QString& locat
|
|||||||
qDebug() << QString( "Loading native module %1" ).arg( location );
|
qDebug() << QString( "Loading native module %1" ).arg( location );
|
||||||
if ( !lib.load() )
|
if ( !lib.load() )
|
||||||
{
|
{
|
||||||
qDebug() << QString( "Failed to load library %1: %2" ).arg( lib.fileName(), lib.errorString());
|
qDebug() << QString( "Failed to load library %1: %2" ).arg( lib.fileName(), lib.errorString() );
|
||||||
QgsMessageLog::logMessage( QString( "Failed to load library %1: %2" ).arg( lib.fileName(), lib.errorString() ) );
|
QgsMessageLog::logMessage( QString( "Failed to load library %1: %2" ).arg( lib.fileName(), lib.errorString() ) );
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
@ -119,11 +119,13 @@ namespace QgsWms
|
|||||||
QDomDocument getSchemaExtension();
|
QDomDocument getSchemaExtension();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
//! Don't use the default constructor
|
//! Don't use the default constructor
|
||||||
QgsWmsServer();
|
QgsWmsServer();
|
||||||
|
|
||||||
// Render these public (Transitional)
|
// Render these public (Transitional)
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/** Initializes WMS layers and configures rendering.
|
/** Initializes WMS layers and configures rendering.
|
||||||
* @param layersList out: list with WMS layer names
|
* @param layersList out: list with WMS layer names
|
||||||
* @param stylesList out: list with WMS style names
|
* @param stylesList out: list with WMS style names
|
||||||
|
Loading…
x
Reference in New Issue
Block a user