diff --git a/external/libdxfrw/drw_header.cpp b/external/libdxfrw/drw_header.cpp index a98479572db..cf7aa6e69fa 100644 --- a/external/libdxfrw/drw_header.cpp +++ b/external/libdxfrw/drw_header.cpp @@ -1947,8 +1947,8 @@ bool DRW_Header::parseDwg( DRW::Version version, dwgBuffer *buf, dwgBuffer *hBbu if ( version > DRW::AC1021 && mv > 3 ) //2010+ { duint32 hSize = buf->getRawLong32(); - endBitPos += 32; //start bit: + 4 hight size - QgsDebugMsg( QString( "2010+ & MV> 3, higth 32b:%1" ).arg( hSize ) ); + endBitPos += 32; //start bit: + 4 height size + QgsDebugMsg( QString( "2010+ & MV> 3, height 32b:%1" ).arg( hSize ) ); Q_UNUSED( hSize ); } //RLZ TODO add $ACADVER var & $DWGCODEPAGE & $MEASUREMENT diff --git a/external/libdxfrw/intern/dwgreader18.cpp b/external/libdxfrw/intern/dwgreader18.cpp index 2099fc6dbfc..a98f0a0cc95 100644 --- a/external/libdxfrw/intern/dwgreader18.cpp +++ b/external/libdxfrw/intern/dwgreader18.cpp @@ -644,7 +644,7 @@ bool dwgReader18::readDwgClasses() if ( version > DRW::AC1021 && maintenanceVersion > 3 ) //2010+ { duint32 hSize = dataBuf.getRawLong32(); - DRW_DBG( "\n2010+ & MV> 3, higth 32b: " ); + DRW_DBG( "\n2010+ & MV> 3, height 32b: " ); DRW_DBG( hSize ); } duint32 bitSize = 0; diff --git a/src/core/qgsgeometryvalidator.h b/src/core/qgsgeometryvalidator.h index d3a34617dfc..b0a7802ac84 100644 --- a/src/core/qgsgeometryvalidator.h +++ b/src/core/qgsgeometryvalidator.h @@ -34,7 +34,7 @@ class CORE_EXPORT QgsGeometryValidator : public QThread /** * Constructor for QgsGeometryValidator. */ - QgsGeometryValidator( const QgsGeometry &geoemtry, QVector *errors = nullptr, QgsGeometry::ValidationMethod method = QgsGeometry::ValidatorQgisInternal ); + QgsGeometryValidator( const QgsGeometry &geometry, QVector *errors = nullptr, QgsGeometry::ValidationMethod method = QgsGeometry::ValidatorQgisInternal ); ~QgsGeometryValidator() override; void run() override; diff --git a/src/providers/wcs/qgswcscapabilities.cpp b/src/providers/wcs/qgswcscapabilities.cpp index a23f566b3e2..6d0b0ec3e72 100644 --- a/src/providers/wcs/qgswcscapabilities.cpp +++ b/src/providers/wcs/qgswcscapabilities.cpp @@ -822,7 +822,7 @@ bool QgsWcsCapabilities::parseDescribeCoverageDom10( QByteArray const &xml, QgsW QList high = parseInts( domElementText( gridElement, QStringLiteral( "limits.GridEnvelope.high" ) ) ); if ( low.size() == 2 && high.size() == 2 ) { - // low/high are indexes in grid -> size is hight - low + 1 + // low/high are indexes in grid -> size is height - low + 1 double width = high[0] - low[0] + 1; double height = high[1] - low[1] + 1; if ( width > 0 && height > 0 )