Skip to content

Commit e7d0392

Browse files
committedMay 28, 2016
Fix doxygen warnings
1 parent b9baf2e commit e7d0392

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed
 

‎python/core/qgsmapsettings.sip

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,18 @@ class QgsMapSettings
3939
//! Set DPI used for conversion between real world units (e.g. mm) and pixels
4040
void setOutputDpi( double dpi );
4141

42-
4342
/**
44-
* @brief setMagnificationFactor set the magnification factor
43+
* Set the magnification factor.
4544
* @param factor the factor of magnification
4645
* @note added in 2.16
46+
* @see magnificationFactor()
4747
*/
48-
void setMagnificationFactor( double factor );
48+
void setMagnificationFactor( double factor );
4949

50-
//! Return the magnification factor.
50+
//! Return the magnification factor.
5151
//! @note added in 2.16
52-
double magnificationFactor() const;
52+
//! @see setMagnificationFactor()
53+
double magnificationFactor() const;
5354

5455
//! Get list of layer IDs for map rendering
5556
//! The layers are stored in the reverse order of how they are rendered (layer with index 0 will be on top)

‎src/core/qgsmapsettings.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,16 @@ class CORE_EXPORT QgsMapSettings
8888
void setOutputDpi( double dpi );
8989

9090
/**
91-
* @brief setMagnificationFactor set the magnification factor
91+
* Set the magnification factor.
9292
* @param factor the factor of magnification
93-
* @param factorChanged defines if it actually changed in the map settings
9493
* @note added in 2.16
94+
* @see magnificationFactor()
9595
*/
9696
void setMagnificationFactor( double factor );
97+
9798
//! Return the magnification factor.
9899
//! @note added in 2.16
100+
//! @see setMagnificationFactor()
99101
double magnificationFactor() const;
100102

101103
//! Get list of layer IDs for map rendering

0 commit comments

Comments
 (0)
Please sign in to comment.