Skip to content

Commit 77e7693

Browse files
committedMar 25, 2017
Fix spelling errors in processing algorithm help
1 parent b90aa91 commit 77e7693

27 files changed

+54
-43
lines changed
 

‎NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2012,7 +2012,7 @@ Implemented a new map cursor type : Capture Point (little pencil icon on your to
20122012
are placed into the system clipboard.
20132013

20142014
In release 0.5 this will be extended to provide simple point vector file data capture /
2015-
digitizing facility. This will be implemented by means of a plugin which will utilise the
2015+
digitizing facility. This will be implemented by means of a plugin which will utilize the
20162016
aforementioned xyClickCoordinate(QgsPoint) signal.
20172017

20182018
2004-06-12 [gsherman] 0.3.0devel30

‎doc/api_break.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2127,7 +2127,7 @@ Processing {#qgis_api_break_3_0_Processing}
21272127
- Algorithm providers now subclass the c++ QgsProcessingProvider class, and must be adapted to the API for QgsProcessingProvider. Specifically,
21282128
getName() should be replaced with id(), getDescription() with name(), and getIcon with icon().
21292129
- Algorithm's processAlgorithm method now passes a QgsProcessingFeedback object instead of the loosely defined progress parameter. Algorithms will
2130-
need to update their use of the progress argument to utilise the QgsProcessingFeedback API.
2130+
need to update their use of the progress argument to utilize the QgsProcessingFeedback API.
21312131
- Similarly, Python processing scripts no longer have access to a progress variable for reporting their progress. Instead they have a feedback
21322132
object of type QgsProcessingFeedback, and will need to adapt their use of progress reporting to the QgsProcessingFeedback API.
21332133
- SilentProgress was removed. Use the base QgsProcessingFeedback class instead.

‎doc/news.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2203,7 +2203,7 @@ <H1>28. 0.5</H1>
22032203
</P>
22042204
<P>
22052205
In release 0.5 this will be extended to provide simple point vector file data capture /
2206-
digitizing facility. This will be implemented by means of a plugin which will utilise the
2206+
digitizing facility. This will be implemented by means of a plugin which will utilize the
22072207
aforementioned xyClickCoordinate(QgsPoint) signal.
22082208
</P>
22092209
<P>

‎doc/news.t2t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ Implemented a new map cursor type : Capture Point (little pencil icon on your to
19641964
are placed into the system clipboard.
19651965

19661966
In release 0.5 this will be extended to provide simple point vector file data capture /
1967-
digitizing facility. This will be implemented by means of a plugin which will utilise the
1967+
digitizing facility. This will be implemented by means of a plugin which will utilize the
19681968
aforementioned xyClickCoordinate(QgsPoint) signal.
19691969

19701970
2004-06-12 [gsherman] 0.3.0devel30

‎python/core/effects/qgsgloweffect.sip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ class QgsGlowEffect : QgsPaintEffect
124124
QColor color() const;
125125

126126
/** Sets the color ramp for the glow. This only applies if the @link colorType @endlink
127-
* is set to ColorRamp. The glow will utilise colors from the ramp.
127+
* is set to ColorRamp. The glow will utilize colors from the ramp.
128128
* @param ramp color ramp for glow. Ownership of the ramp is transferred to the effect.
129129
* @see ramp
130130
* @see setColorType
131131
*/
132132
void setRamp( QgsColorRamp* ramp /Transfer/ );
133133

134134
/** Returns the color ramp used for the glow. This only applies if the @link colorType @endlink
135-
* is set to ColorRamp. The glow will utilise colors from the ramp.
135+
* is set to ColorRamp. The glow will utilize colors from the ramp.
136136
* @returns color ramp for glow
137137
* @see setRamp
138138
* @see colorType

‎python/core/effects/qgspainteffect.sip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class QgsPaintEffect
192192
*/
193193
void drawSource( QPainter& painter );
194194

195-
/** Returns the source QPicture. The @link draw @endlink member can utilise this when
195+
/** Returns the source QPicture. The @link draw @endlink member can utilize this when
196196
* drawing the effect.
197197
* @returns source QPicture
198198
* @see drawSource
@@ -201,7 +201,7 @@ class QgsPaintEffect
201201
const QPicture* source() const;
202202

203203
/** Returns the source QPicture rendered to a new QImage. The @link draw @endlink member can
204-
* utilise this when drawing the effect. The image will be padded or cropped from the original
204+
* utilize this when drawing the effect. The image will be padded or cropped from the original
205205
* source QPicture by the results of the @link boundingRect @endlink method.
206206
* The result is cached to speed up subsequent calls to sourceAsImage.
207207
* @returns source QPicture rendered to an image

‎python/core/qgsexpression.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ class QgsExpression
423423
static const QList<QgsExpression::Function *>& Functions();
424424
static const QStringList& BuiltinFunctions();
425425

426-
/** Registers a function to the expression engine. This is required to allow expressions to utilise the function.
426+
/** Registers a function to the expression engine. This is required to allow expressions to utilize the function.
427427
* @param function function to register
428428
* @param transferOwnership set to true to transfer ownership of function to expression engine
429429
* @returns true on successful registration

‎python/core/qgsexpressioncontext.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class QgsExpressionContextScope
206206
/** \ingroup core
207207
* \class QgsExpressionContext
208208
* \brief Expression contexts are used to encapsulate the parameters around which a QgsExpression should
209-
* be evaluated. QgsExpressions can then utilise the information stored within a context to contextualise
209+
* be evaluated. QgsExpressions can then utilize the information stored within a context to contextualise
210210
* their evaluated result. A QgsExpressionContext consists of a stack of QgsExpressionContextScope objects,
211211
* where scopes added later to the stack will override conflicting variables and functions from scopes
212212
* lower in the stack.

‎python/core/qgstaskmanager.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class QgsTask : QObject
116116
* time as the parent task. This behavior can be overridden through the subTaskDependency
117117
* argument.
118118
*
119-
* The parent task must be added to a QgsTaskManager for subtasks to be utilised.
119+
* The parent task must be added to a QgsTaskManager for subtasks to be utilized.
120120
* Subtasks should not be added manually to a QgsTaskManager, rather, only the parent
121121
* task should be added to the manager.
122122
*

‎python/core/qgstextrenderer.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ class QgsTextShadowSettings
609609
*/
610610
int offsetAngle() const;
611611

612-
/** Sets the angle for offseting the position of the shadow from the text.
612+
/** Sets the angle for offsetting the position of the shadow from the text.
613613
* @param angle offset angle in degrees
614614
* @see offsetAngle()
615615
* @see setOffsetDistance()

‎python/core/symbology-ng/qgssymbol.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class QgsSymbol
217217
*/
218218
QSet<QString> usedAttributes( const QgsRenderContext& context ) const;
219219

220-
/** Returns whether the symbol utilises any data defined properties.
220+
/** Returns whether the symbol utilizes any data defined properties.
221221
* @note added in QGIS 2.12
222222
*/
223223
bool hasDataDefinedProperties() const;

‎python/gui/qgsfieldmodel.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class QgsFieldModel : QAbstractItemModel
1313

1414
public:
1515

16-
//! Roles utilised by the model
16+
//! Roles utilized by the model
1717
enum FieldRoles
1818
{
1919
FieldNameRole, /*!< return field name if index corresponds to a field */

‎python/plugins/processing/algs/help/qgis.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ qgis:checkvalidity:
5353
qgis:clip: >
5454
This algorithm clips a vector layer using the polygons of an additional polygons layer. Only the parts of the features in the input layer that falls within the polygons of the clipping layer will be added to the resulting layer.
5555

56-
The attributes of the features are not modified, although properties such as area or length of the features will be modified by the clipoing operation. If such properties are stored as attributes, those attributes will have to be manually updated.
56+
The attributes of the features are not modified, although properties such as area or length of the features will be modified by the clipping operation. If such properties are stored as attributes, those attributes will have to be manually updated.
5757

5858
qgis:concavehull: >
5959
This algorithm computes the concave hull of the features in an input layer.
@@ -112,7 +112,7 @@ qgis:creategridpolygon:
112112
qgis:createpointsalonglines: >
113113
This algorithms creates a points layer, with points distributed along the lines of an input vector layer. the distance between points (measured along the line) is defined as a parameter.
114114

115-
Start and end points can be defined, so the first and last point do not fall on the line first and last node. Start and end points are defined as distances, mesaureed from the first and last nodes of the lines, in the units of the projection used by the lines layer.
115+
Start and end points can be defined, so the first and last point do not fall on the line first and last node. Start and end points are defined as distances, measured from the first and last nodes of the lines, in the units of the projection used by the lines layer.
116116

117117
qgis:createspatialindex: >
118118
Creates an index to speed up access to the features in a layer based on their spatial location. Support for spatial index creation is dependent on the layer's data provider.
@@ -139,7 +139,7 @@ qgis:densifygeometries:
139139
The number of new vertices to add to each feature geometry is specified as an input parameter.
140140

141141
qgis:densifygeometriesgivenaninterval:
142-
This algorithm takes a polygon or line layer and generaates a new one in which the geometries have a larger number of vertices than the original one.
142+
This algorithm takes a polygon or line layer and generates a new one in which the geometries have a larger number of vertices than the original one.
143143

144144
The number of new vertices depends on the length of the geometry, and is specified as a distance between them. The distance is expressed in the same units used by the layer CRS.
145145

@@ -155,7 +155,7 @@ qgis:distancematrix: >
155155
This algorithms creates a table containing a distance matrix, with distances between all the points in a points layer.
156156

157157
qgis:distancetonearesthub: >
158-
Given a layer with source point and another one representing destination points, this algorithm computes the distance between each source point and the closest detination one.
158+
Given a layer with source point and another one representing destination points, this algorithm computes the distance between each source point and the closest destination one.
159159

160160
The resulting layer can contain only source points with an additional field indicating the distance to the nearest point and the name of the destination point, or lines linking each source point with its nearest destination point.
161161

@@ -201,7 +201,7 @@ qgis:extractspecificnodes: >
201201
Additional fields are added to the nodes indicating the specific node position (e.g., 0, -1, etc), the original node index, distance along the original geometry and bisector angle of node for the original geometry.
202202

203203
qgis:fieldcalculator: >
204-
This algorithm computes a new vector layer with the same features of the input layer, but with an additional attribute. The values of this new attribute are computed from each feature using a mathematical formula, based on te properties and attributes of the feature.
204+
This algorithm computes a new vector layer with the same features of the input layer, but with an additional attribute. The values of this new attribute are computed from each feature using a mathematical formula, based on the properties and attributes of the feature.
205205

206206
qgis:findprojection: >
207207
This algorithm allows creation of a shortlist of possible candidate coordinate reference systems for a layer with an unknown projection.
@@ -217,15 +217,15 @@ qgis:fixeddistancebuffer: >
217217

218218
The end cap style parameter controls how line endings are handled in the buffer.
219219

220-
The join style parameter specifies whether round, mitre or beveled joins should be used when offseting corners in a line.
220+
The join style parameter specifies whether round, mitre or beveled joins should be used when offsetting corners in a line.
221221

222222
The mitre limit parameter is only applicable for mitre join styles, and controls the maximum distance from the offset curve to use when creating a mitred join.
223223

224224
qgis:frequencyanalysis: >
225225
This algorithms generates a table with frequency analysis of the values of a selected attribute from an input vector layer
226226

227227
qgis:geometrybyexpression: >
228-
This algorithm updates existing geometries (or creates new geometries) for input features by use of a QGIS expression. This allows complex geometry modifications which can utilise all the flexibility of the QGIS expression engine to manipulate and create geometries for output features.
228+
This algorithm updates existing geometries (or creates new geometries) for input features by use of a QGIS expression. This allows complex geometry modifications which can utilize all the flexibility of the QGIS expression engine to manipulate and create geometries for output features.
229229

230230
For help with QGIS expression functions, see the inbuilt help for specific functions which is available in the expression builder.
231231

@@ -266,7 +266,7 @@ qgis:joinattributestable: >
266266
The additional attributes and their values are taken from a second vector layer. An attribute is selected in each of them to define the join criteria.
267267

268268
qgis:keepnbiggestparts: >
269-
This algorithms takes a polygon layer and creates a new polygon layer in which multipart goemetries have been removed, leaving only the n largest (in terms of area) parts
269+
This algorithms takes a polygon layer and creates a new polygon layer in which multipart geometries have been removed, leaving only the n largest (in terms of area) parts
270270

271271
qgis:lineintersections:
272272
This algorithm creates point features where the lines in the Intersect layer intersect the lines in the Input layer.
@@ -307,7 +307,7 @@ qgis:multiparttosingleparts: >
307307
This algorithm takes a vector layer with multipart geometries and generates a new one in which all geometries contain a single part. Features with multipart geometries are divided in as many different features as parts the geometry contain, and the same attributes are used for each of them.
308308

309309
qgis:nearestneighbouranalysis: >
310-
This algorithm performs nearest neighbout analysis for a point layer.
310+
This algorithm performs nearest neighbor analysis for a point layer.
311311

312312
Output is generated as an html file with the computed statistical values.
313313

@@ -324,7 +324,7 @@ qgis:offsetline: >
324324

325325
The segments parameter controls the number of line segments to use to approximate a quarter circle when creating rounded offsets.
326326

327-
The join style parameter specifies whether round, mitre or beveled joins should be used when offseting corners in a line.
327+
The join style parameter specifies whether round, mitre or beveled joins should be used when offsetting corners in a line.
328328

329329
The mitre limit parameter is only applicable for mitre join styles, and controls the maximum distance from the offset curve to use when creating a mitred join.
330330

@@ -421,10 +421,10 @@ qgis:randompointsinlayerbounds: >
421421
This algorithm creates a new point layer with a given number of random points, all of them within the extent of a given layer. A distance factor can be specified, to avoid points being too close to each other.
422422

423423
qgis:randompointsinsidepolygonsfixed: >
424-
This algorithms creates a new point layer with random points insides the ppolygons of a given layer. The number of points in each polygon can be defined as a fixed count or as a density value, and it will be the same for all polygons.
424+
This algorithms creates a new point layer with random points insides the polygons of a given layer. The number of points in each polygon can be defined as a fixed count or as a density value, and it will be the same for all polygons.
425425

426426
qgis:randompointsinsidepolygonsvariable: >
427-
This algorithm creates a new point layer with random points insides the ppolygons of a given layer. The number of points in each polygon can be defined as a fixed count or as a density value. The count/density valu is taken from an attribute, so it can be different for each polygons in the input layer.
427+
This algorithm creates a new point layer with random points insides the polygons of a given layer. The number of points in each polygon can be defined as a fixed count or as a density value. The count/density value is taken from an attribute, so it can be different for each polygons in the input layer.
428428

429429
qgis:randomselection: >
430430
This algorithm takes a vector layer and selects a subset of its features. No new layer is generated by this algorithm.
@@ -541,7 +541,7 @@ qgis:sumlinelengths: >
541541
The resulting layer has the same features as the input polygon layer, but with two additional attributes containing the length and count of the lines across each polygon. The names of these two fields can be configured in the algorithm parameters.
542542

543543
qgis:symmetricaldifference: >
544-
This algorithm creates a layer containing features from both the Input and Difference layers but with the overlapping areas between the two layers removed. The attribute table of the Symmetrical Difference layer contains atrributes from both the Input and Difference layers.
544+
This algorithm creates a layer containing features from both the Input and Difference layers but with the overlapping areas between the two layers removed. The attribute table of the Symmetrical Difference layer contains attributes from both the Input and Difference layers.
545545

546546

547547
qgis:texttofloat: >

‎scripts/spell_check/spelling.dat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,7 @@ atorney:attorney
759759
atribute:attribute
760760
atributed:attributed
761761
atributes:attributes
762+
atrributes:attributes
762763
attachement:attachment
763764
attaindre:attainder
764765
attatch:attach
@@ -1292,6 +1293,7 @@ cleints:clients
12921293
clera:clear
12931294
clincial:clinical
12941295
clinicaly:clinically
1296+
clipoing:clipping
12951297
closeing:closing
12961298
cmoputer:computer
12971299
co-incided:coincided
@@ -2115,6 +2117,7 @@ determinining:determining
21152117
determins:determines
21162118
determinstic:deterministic
21172119
determinstically:deterministically
2120+
detination:destination
21182121
detremental:detrimental
21192122
detroy:destroy
21202123
detroyed:destroyed
@@ -3112,6 +3115,7 @@ gausian:Gaussian
31123115
geneological:genealogical
31133116
geneologies:genealogies
31143117
geneology:genealogy
3118+
generaates:generates
31153119
generaly:generally
31163120
generater:generator
31173121
generaters:generators
@@ -3147,6 +3151,7 @@ glyphes:glyphs
31473151
gnawwed:gnawed
31483152
godess:goddess
31493153
godesses:goddesses
3154+
goemetries:geometries
31503155
Godounov:Godunov
31513156
gogin:going
31523157
goign:going
@@ -4315,6 +4320,7 @@ mentionned:mentioned
43154320
mercentile:mercantile
43164321
mesage:message
43174322
mesages:messages
4323+
mesaureed:measured
43184324
messagin:messaging
43194325
messags:messages
43204326
messanger:messenger
@@ -4566,6 +4572,7 @@ neigbour:neighbor
45664572
neigbourhood:neighbourhood
45674573
neigbouring:neighboring
45684574
neigbours:neighbors
4575+
neighbout:neighbor
45694576
neolitic:neolithic
45704577
nescessarily:necessarily
45714578
nescessary:necessary
@@ -4720,6 +4727,7 @@ officals:officials
47204727
officaly:officially
47214728
officialy:officially
47224729
offred:offered
4730+
offseting:offsetting
47234731
oftenly:often
47244732
ofthe:of the
47254733
oging:going
@@ -5191,6 +5199,7 @@ poulations:populations
51915199
poverful:powerful
51925200
poweful:powerful
51935201
powerfull:powerful
5202+
ppolygons:polygons
51945203
ppublisher:publisher
51955204
practial:practical
51965205
practially:practically
@@ -7279,6 +7288,7 @@ usetnet:Usenet
72797288
usuable:usable
72807289
usualy:usually
72817290
ususally:usually
7291+
utilise:utilize
72827292
utilites:utilities
72837293
utillities:utilities
72847294
utilties:utilities
@@ -7297,6 +7307,7 @@ vailidty:validity
72977307
valetta:valletta
72987308
validing:validating
72997309
valied:valid
7310+
valu:value
73007311
valuble:valuable
73017312
valueable:valuable
73027313
varable:variable

‎src/core/composer/qgscomposermap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,7 @@ QgsExpressionContext QgsComposerMap::createExpressionContext() const
17231723
{
17241724
QgsExpressionContext context = QgsComposerItem::createExpressionContext();
17251725

1726-
//Can't utilise QgsExpressionContextUtils::mapSettingsScope as we don't always
1726+
//Can't utilize QgsExpressionContextUtils::mapSettingsScope as we don't always
17271727
//have a QgsMapSettings object available when the context is required, so we manually
17281728
//add the same variables here
17291729
QgsExpressionContextScope *scope = new QgsExpressionContextScope( tr( "Map Settings" ) );

‎src/core/composer/qgscomposertablev2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ QPair<int, int> QgsComposerTableV2::rowRange( const int frameIndex ) const
312312
}
313313

314314
//loop through all previous frames to calculate how many rows are visible in each
315-
//as the entire height of a frame may not be utilised for content rows
315+
//as the entire height of a frame may not be utilized for content rows
316316
int rowsAlreadyShown = 0;
317317
for ( int idx = 0; idx < frameIndex; ++idx )
318318
{
@@ -1064,7 +1064,7 @@ double QgsComposerTableV2::totalHeight()
10641064
double height = 0;
10651065

10661066
//loop through all existing frames to calculate how many rows are visible in each
1067-
//as the entire height of a frame may not be utilised for content rows
1067+
//as the entire height of a frame may not be utilized for content rows
10681068
int rowsAlreadyShown = 0;
10691069
int numberExistingFrames = frameCount();
10701070
int rowsVisibleInLastFrame = 0;

‎src/core/effects/qgsgloweffect.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ class CORE_EXPORT QgsGlowEffect : public QgsPaintEffect
148148
QColor color() const { return mColor; }
149149

150150
/** Sets the color ramp for the glow. This only applies if the @link colorType @endlink
151-
* is set to ColorRamp. The glow will utilise colors from the ramp.
151+
* is set to ColorRamp. The glow will utilize colors from the ramp.
152152
* @param ramp color ramp for glow. Ownership of the ramp is transferred to the effect.
153153
* @see ramp
154154
* @see setColorType
155155
*/
156156
void setRamp( QgsColorRamp *ramp );
157157

158158
/** Returns the color ramp used for the glow. This only applies if the @link colorType @endlink
159-
* is set to ColorRamp. The glow will utilise colors from the ramp.
159+
* is set to ColorRamp. The glow will utilize colors from the ramp.
160160
* @returns color ramp for glow
161161
* @see setRamp
162162
* @see colorType

‎src/core/effects/qgspainteffect.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class CORE_EXPORT QgsPaintEffect
181181
*/
182182
void drawSource( QPainter &painter );
183183

184-
/** Returns the source QPicture. The @link draw @endlink member can utilise this when
184+
/** Returns the source QPicture. The @link draw @endlink member can utilize this when
185185
* drawing the effect.
186186
* @returns source QPicture
187187
* @see drawSource
@@ -190,7 +190,7 @@ class CORE_EXPORT QgsPaintEffect
190190
const QPicture *source() const { return mPicture; }
191191

192192
/** Returns the source QPicture rendered to a new QImage. The @link draw @endlink member can
193-
* utilise this when drawing the effect. The image will be padded or cropped from the original
193+
* utilize this when drawing the effect. The image will be padded or cropped from the original
194194
* source QPicture by the results of the @link boundingRect @endlink method.
195195
* The result is cached to speed up subsequent calls to sourceAsImage.
196196
* @returns source QPicture rendered to an image

‎src/core/qgsexpression.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ class CORE_EXPORT QgsExpression
758758
static QStringList sBuiltinFunctions;
759759
static const QStringList &BuiltinFunctions();
760760

761-
/** Registers a function to the expression engine. This is required to allow expressions to utilise the function.
761+
/** Registers a function to the expression engine. This is required to allow expressions to utilize the function.
762762
* @param function function to register
763763
* @param transferOwnership set to true to transfer ownership of function to expression engine
764764
* @returns true on successful registration

‎src/core/qgsexpressioncontext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ class CORE_EXPORT QgsExpressionContextScope
301301
/** \ingroup core
302302
* \class QgsExpressionContext
303303
* \brief Expression contexts are used to encapsulate the parameters around which a QgsExpression should
304-
* be evaluated. QgsExpressions can then utilise the information stored within a context to contextualise
304+
* be evaluated. QgsExpressions can then utilize the information stored within a context to contextualise
305305
* their evaluated result. A QgsExpressionContext consists of a stack of QgsExpressionContextScope objects,
306306
* where scopes added later to the stack will override conflicting variables and functions from scopes
307307
* lower in the stack.

‎src/core/qgstaskmanager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class CORE_EXPORT QgsTask : public QObject
160160
* argument. Note that subtasks should NEVER be dependent on their parent task, and violating
161161
* this constraint will prevent the task from completing successfully.
162162
*
163-
* The parent task must be added to a QgsTaskManager for subtasks to be utilised.
163+
* The parent task must be added to a QgsTaskManager for subtasks to be utilized.
164164
* Subtasks should not be added manually to a QgsTaskManager, rather, only the parent
165165
* task should be added to the manager.
166166
*

‎src/core/qgstextrenderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ class CORE_EXPORT QgsTextShadowSettings
657657
*/
658658
int offsetAngle() const;
659659

660-
/** Sets the angle for offseting the position of the shadow from the text.
660+
/** Sets the angle for offsetting the position of the shadow from the text.
661661
* @param angle offset angle in degrees
662662
* @see offsetAngle()
663663
* @see setOffsetDistance()

‎src/core/symbology-ng/qgslinesymbollayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ class CORE_EXPORT QgsMarkerLineSymbolLayer : public QgsLineSymbolLayer
349349

350350
private:
351351

352-
/** Renders a marker by offseting a vertex along the line by a specified distance.
352+
/** Renders a marker by offsetting a vertex along the line by a specified distance.
353353
* @param points vertices making up the line
354354
* @param vertex vertex number to begin offset at
355355
* @param distance distance to offset from vertex. If distance is positive, offset is calculated

‎src/core/symbology-ng/qgssymbol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ class CORE_EXPORT QgsSymbol
267267
*/
268268
QSet<QString> usedAttributes( const QgsRenderContext &context ) const;
269269

270-
/** Returns whether the symbol utilises any data defined properties.
270+
/** Returns whether the symbol utilizes any data defined properties.
271271
* @note added in QGIS 2.12
272272
*/
273273
bool hasDataDefinedProperties() const;

‎src/core/symbology-ng/qgssymbollayerutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2868,7 +2868,7 @@ QString QgsSymbolLayerUtils::colorToName( const QColor &color )
28682868
return QString();
28692869
}
28702870

2871-
//TODO - utilise a color names database (such as X11) to return nicer names
2871+
//TODO - utilize a color names database (such as X11) to return nicer names
28722872
//for now, just return hex codes
28732873
return color.name();
28742874
}

‎src/gui/qgsfieldmodel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class GUI_EXPORT QgsFieldModel : public QAbstractItemModel
4141

4242
public:
4343

44-
//! Roles utilised by the model
44+
//! Roles utilized by the model
4545
enum FieldRoles
4646
{
4747
FieldNameRole = Qt::UserRole + 1, //!< Return field name if index corresponds to a field

‎tests/src/core/testqgspainteffect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ void TestQgsPaintEffect::vectorLayerEffect()
819819

820820
void TestQgsPaintEffect::mapUnits()
821821
{
822-
//test rendering an effect which utilises map units
822+
//test rendering an effect which utilizes map units
823823
QString linesFileName = mTestDataDir + "lines.shp";
824824
QFileInfo lineFileInfo( linesFileName );
825825
QgsVectorLayer *lineLayer = new QgsVectorLayer( lineFileInfo.filePath(),

0 commit comments

Comments
 (0)
Please sign in to comment.