Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarteau committed Jan 10, 2017
1 parent 0150dfb commit fc7c0f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/server/qgsservicemodule.sip
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class QgsServiceModule
* Ask module to registe all provided services
* @param registry QgsServiceRegistry
*/
virtual void registerSelf( QgsServiceRegistry& registry,
QgsServerInterface* serverIface = nullptr ) = 0;
virtual void registerSelf( QgsServiceRegistry& registry,
QgsServerInterface* serverIface = nullptr ) = 0;
};


4 changes: 2 additions & 2 deletions src/server/qgsservicenativeloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void QgsServiceNativeLoader::loadModules( const QString& modulePath, QgsServiceR
moduleDir.setNameFilters( QStringList( "*.so" ) );
#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() ) );

Q_FOREACH ( const QFileInfo& fi, moduleDir.entryInfoList() )
Expand Down Expand Up @@ -98,7 +98,7 @@ QgsServiceModule* QgsServiceNativeLoader::loadNativeModule( const QString& locat
qDebug() << QString( "Loading native module %1" ).arg( location );
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() ) );
return nullptr;
}
Expand Down
2 changes: 2 additions & 0 deletions src/server/services/wms/qgswmsservertransitional.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,13 @@ namespace QgsWms
QDomDocument getSchemaExtension();

private:

//! Don't use the default constructor
QgsWmsServer();

// Render these public (Transitional)
public:

/** Initializes WMS layers and configures rendering.
* @param layersList out: list with WMS layer names
* @param stylesList out: list with WMS style names
Expand Down

0 comments on commit fc7c0f0

Please sign in to comment.