Skip to content

Commit c758769

Browse files
committedMay 22, 2018
fix docs
1 parent 3339012 commit c758769

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed
 

‎python/core/auto_generated/mesh/qgsmeshdataprovider.sip.in

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,12 @@ read on demand
193193

194194
virtual QgsMeshVertex vertex( int index ) const = 0;
195195
%Docstring
196-
Factory for mesh vertex with index
197-
198-
:return: New mesh vertex on index
196+
Returns the mesh vertex at index
199197
%End
200198

201199
virtual QgsMeshFace face( int index ) const = 0;
202200
%Docstring
203-
Factory for mesh face with index
204-
205-
:return: new mesh face on index
201+
Returns the mesh face at index
206202
%End
207203
};
208204

‎src/core/mesh/qgsmeshdataprovider.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,12 @@ class CORE_EXPORT QgsMeshDataSourceInterface SIP_ABSTRACT
185185
virtual int faceCount() const = 0;
186186

187187
/**
188-
* \brief Factory for mesh vertex with index
189-
* \returns New mesh vertex on index
188+
* Returns the mesh vertex at index
190189
*/
191190
virtual QgsMeshVertex vertex( int index ) const = 0;
192191

193192
/**
194-
* \brief Factory for mesh face with index
195-
* \returns new mesh face on index
193+
* Returns the mesh face at index
196194
*/
197195
virtual QgsMeshFace face( int index ) const = 0;
198196
};

0 commit comments

Comments
 (0)
Please sign in to comment.