mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-12 00:02:25 -04:00
Change variable name to clarify the getter purpose
This commit is contained in:
parent
d10ec078d1
commit
841086046f
@ -1480,7 +1480,7 @@ namespace QgsWms
|
||||
return filters;
|
||||
}
|
||||
|
||||
bool QgsWmsParameters::force2D() const
|
||||
bool QgsWmsParameters::isForce2D() const
|
||||
{
|
||||
bool force2D = false;
|
||||
const QMap<DxfFormatOption, QString> options = dxfFormatOptions();
|
||||
|
@ -1325,7 +1325,7 @@ namespace QgsWms
|
||||
*
|
||||
* \since QGIS 3.12
|
||||
*/
|
||||
bool force2D() const;
|
||||
bool isForce2D() const;
|
||||
|
||||
private:
|
||||
static bool isExternalLayer( const QString &name );
|
||||
|
@ -848,7 +848,7 @@ namespace QgsWms
|
||||
dxf->setSymbologyScale( mWmsParameters.dxfScale() );
|
||||
}
|
||||
|
||||
dxf->setForce2d( mWmsParameters.force2D() );
|
||||
dxf->setForce2d( mWmsParameters.isForce2D() );
|
||||
QgsDxfExport::Flags flags;
|
||||
if ( mWmsParameters.noMText() )
|
||||
flags.setFlag( QgsDxfExport::Flag::FlagNoMText );
|
||||
|
Loading…
x
Reference in New Issue
Block a user