mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-22 00:06:57 -04:00
Fix build error and warnings
This commit is contained in:
parent
7daa4b591e
commit
e54bc9aaed
@ -30,6 +30,10 @@ class QgsFeatureIterator;
|
||||
class CORE_EXPORT QgsAbstractCacheIndex
|
||||
{
|
||||
public:
|
||||
|
||||
/**
|
||||
* Constructor for QgsAbstractCacheIndex.
|
||||
*/
|
||||
QgsAbstractCacheIndex() = default;
|
||||
virtual ~QgsAbstractCacheIndex() = default;
|
||||
|
||||
|
@ -54,6 +54,9 @@ class CORE_EXPORT QgsColorScheme
|
||||
};
|
||||
Q_DECLARE_FLAGS( SchemeFlags, SchemeFlag )
|
||||
|
||||
/**
|
||||
* Constructor for QgsColorScheme.
|
||||
*/
|
||||
QgsColorScheme() = default;
|
||||
|
||||
virtual ~QgsColorScheme() = default;
|
||||
|
@ -4166,7 +4166,7 @@ QString QgsVectorLayer::metadata() const
|
||||
//
|
||||
myMetadata += R"(<p class="glossy">)" + tr( "Layer Spatial Reference System" ) + "</p>\n";
|
||||
myMetadata += QLatin1String( "<p>" );
|
||||
myMetadata += crs().toProj4().replace( '"', QLatin1String( R"( " )" ) );
|
||||
myMetadata += crs().toProj4().replace( '"', QLatin1String( " \"" ) );
|
||||
myMetadata += QLatin1String( "</p>\n" );
|
||||
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user