Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 1, 2019
1 parent 655dc1f commit 196024c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/core/auto_generated/qgsauxiliarystorage.sip.in
Expand Up @@ -291,7 +291,7 @@ the target filename if the auxiliary storage is opened in copy mode.
QString errorString() const;
%Docstring
Returns the underlying error string describing potential errors
hapenning in saveAs(). Empty by default.
happening in saveAs(). Empty by default.

.. versionadded:: 3.4
%End
Expand Down
2 changes: 1 addition & 1 deletion python/core/auto_generated/qgsdataprovider.sip.in
Expand Up @@ -392,7 +392,7 @@ Returns true if metadata was successfully written to the data provider.

void fullExtentCalculated();
%Docstring
Emitted whenever a deffered extent calculation is completed by the provider.
Emitted whenever a deferred extent calculation is completed by the provider.

Layers should connect to this signal and update their cached extents whenever
it is emitted.
Expand Down
Expand Up @@ -87,7 +87,7 @@ Searches through the transparency list, and if a match is found, the global tran
by the stored transparency value.

:param value: the needle to search for in the transparency hay stack
:param globalTransparency: the overal transparency level for the layer
:param globalTransparency: the overall transparency level for the layer
%End


Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/tools/postgis.py
Expand Up @@ -112,7 +112,7 @@ class TableConstraint(object):
match_types = {'u': 'UNSPECIFIED', 'f': 'FULL', 'p': 'PARTIAL'}

def __init__(self, row):
(self.name, con_type, self.is_defferable, self.is_deffered, keys) = row[:5]
(self.name, con_type, self.is_deferable, self.is_deferred, keys) = row[:5]
self.keys = list(map(int, keys.split(' ')))
self.con_type = TableConstraint.types[con_type] # Convert to enum
if self.con_type == TableConstraint.TypeCheck:
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsauxiliarystorage.h
Expand Up @@ -321,7 +321,7 @@ class CORE_EXPORT QgsAuxiliaryStorage

/**
* Returns the underlying error string describing potential errors
* hapenning in saveAs(). Empty by default.
* happening in saveAs(). Empty by default.
*
* \since QGIS 3.4
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsdataprovider.h
Expand Up @@ -525,7 +525,7 @@ class CORE_EXPORT QgsDataProvider : public QObject
signals:

/**
* Emitted whenever a deffered extent calculation is completed by the provider.
* Emitted whenever a deferred extent calculation is completed by the provider.
*
* Layers should connect to this signal and update their cached extents whenever
* it is emitted.
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsrastertransparency.h
Expand Up @@ -102,7 +102,7 @@ class CORE_EXPORT QgsRasterTransparency
* by the stored transparency value.
*
* \param value the needle to search for in the transparency hay stack
* \param globalTransparency the overal transparency level for the layer
* \param globalTransparency the overall transparency level for the layer
*/
int alphaValue( double value, int globalTransparency = 255 ) const;

Expand Down

0 comments on commit 196024c

Please sign in to comment.