Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Aug 24, 2018
1 parent cc424f9 commit 2c0de10
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion python/core/auto_generated/qgsgeometryfixes.sip.in
Expand Up @@ -12,14 +12,19 @@
class QgsGeometryFixes
{
%Docstring
The QgsGeometryFixes class contains options to
The QgsGeometryFixes class contains options to automatically adjust geometries to
constraints on a layer.
%End

%TypeHeaderCode
#include "qgsgeometryfixes.h"
%End
public:

QgsGeometryFixes();
%Docstring
Create a new QgsGeometryFixes object.
%End

bool removeDuplicateNodes() const;
%Docstring
Expand Down
9 changes: 8 additions & 1 deletion src/core/qgsgeometryfixes.h
Expand Up @@ -21,11 +21,18 @@
#include "qgsgeometry.h"

/**
* The QgsGeometryFixes class contains options to
* The QgsGeometryFixes class contains options to automatically adjust geometries to
* constraints on a layer.
*
* \ingroup core
*/
class CORE_EXPORT QgsGeometryFixes
{
public:

/**
* Create a new QgsGeometryFixes object.
*/
QgsGeometryFixes() = default;

/**
Expand Down

0 comments on commit 2c0de10

Please sign in to comment.