Skip to content

Commit

Permalink
Fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 28, 2016
1 parent b9baf2e commit e7d0392
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
11 changes: 6 additions & 5 deletions python/core/qgsmapsettings.sip
Expand Up @@ -39,17 +39,18 @@ class QgsMapSettings
//! Set DPI used for conversion between real world units (e.g. mm) and pixels
void setOutputDpi( double dpi );


/**
* @brief setMagnificationFactor set the magnification factor
* Set the magnification factor.
* @param factor the factor of magnification
* @note added in 2.16
* @see magnificationFactor()
*/
void setMagnificationFactor( double factor );
void setMagnificationFactor( double factor );

//! Return the magnification factor.
//! Return the magnification factor.
//! @note added in 2.16
double magnificationFactor() const;
//! @see setMagnificationFactor()
double magnificationFactor() const;

//! Get list of layer IDs for map rendering
//! The layers are stored in the reverse order of how they are rendered (layer with index 0 will be on top)
Expand Down
6 changes: 4 additions & 2 deletions src/core/qgsmapsettings.h
Expand Up @@ -88,14 +88,16 @@ class CORE_EXPORT QgsMapSettings
void setOutputDpi( double dpi );

/**
* @brief setMagnificationFactor set the magnification factor
* Set the magnification factor.
* @param factor the factor of magnification
* @param factorChanged defines if it actually changed in the map settings
* @note added in 2.16
* @see magnificationFactor()
*/
void setMagnificationFactor( double factor );

//! Return the magnification factor.
//! @note added in 2.16
//! @see setMagnificationFactor()
double magnificationFactor() const;

//! Get list of layer IDs for map rendering
Expand Down

0 comments on commit e7d0392

Please sign in to comment.