Skip to content

Commit 1b86c21

Browse files
committedNov 29, 2017
Fix typos in auxiliary storage doc
1 parent 29bfb10 commit 1b86c21

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

‎src/core/qgsauxiliarystorage.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
125125
bool exists( const QgsPropertyDefinition &definition ) const;
126126

127127
/**
128-
* Add an an auxiliary field for the given property. Setup for widget
129-
* editors are updated in the target layer as weel as the attribute
128+
* Adds an auxiliary field for the given property. Setup for widget
129+
* editors are updated in the target layer as well as the attribute
130130
* table config to hide auxiliary fields by default.
131131
*
132132
* \param definition The definition of the property to add
@@ -141,14 +141,14 @@ class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
141141
QgsFields auxiliaryFields() const;
142142

143143
/**
144-
* Commit changes and starts editing then.
144+
* Commits changes and starts editing then.
145145
*
146146
* \returns true if commit step passed, false otherwise
147147
*/
148148
bool save();
149149

150150
/**
151-
* Remove attribute from the layer and commit changes. The layer remains
151+
* Removes attribute from the layer and commits changes. The layer remains
152152
* editable.
153153
*
154154
* \param attr The index of the attribute to remove
@@ -158,7 +158,7 @@ class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
158158
virtual bool deleteAttribute( int attr ) override;
159159

160160
/**
161-
* Returns true if the underlying field have to be hidden from editing
161+
* Returns true if the underlying field has to be hidden from editing
162162
* tools like attribute table, false otherwise.
163163
*
164164
* \param index The index of the field for which visibility is checked
@@ -186,15 +186,15 @@ class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
186186
int propertyFromIndex( int index ) const;
187187

188188
/**
189-
* Returns the property definition fir the underlying field index.
189+
* Returns the property definition for the underlying field index.
190190
*
191191
* \param index The index of the field
192192
*/
193193
QgsPropertyDefinition propertyDefinitionFromIndex( int index ) const;
194194

195195
/**
196196
* Creates if necessary a new auxiliary field for a PAL property and
197-
* activate this property in settings.
197+
* activates this property in settings.
198198
*
199199
* \param property The property to create
200200
* \param vlayer The vector layer
@@ -205,7 +205,7 @@ class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
205205

206206
/**
207207
* Creates if necessary a new auxiliary field for a diagram's property and
208-
* activate this this property in settings.
208+
* activates this property in settings.
209209
*
210210
* \param property The property to create
211211
* \param vlayer The vector layer
@@ -306,7 +306,7 @@ class CORE_EXPORT QgsAuxiliaryStorage
306306
virtual ~QgsAuxiliaryStorage();
307307

308308
/**
309-
* Returns the status of the auxiliary storage currently definied.
309+
* Returns the status of the auxiliary storage currently defined.
310310
*
311311
* \returns true if the auxiliary storage is valid, false otherwise
312312
*/
@@ -318,8 +318,8 @@ class CORE_EXPORT QgsAuxiliaryStorage
318318
QString fileName() const;
319319

320320
/**
321-
* Returns the path of current database used. It may be different from the
322-
* target filename if the auxiliary storage is opened in copy mode.
321+
* Returns the path of the current database used. It may be different from
322+
* the target filename if the auxiliary storage is opened in copy mode.
323323
*/
324324
QString currentFileName() const;
325325

0 commit comments

Comments
 (0)
Please sign in to comment.