Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix typos
(cherry picked from commit 454e1e43fa8c1ceef109c09f70e4d1595e81d402)
  • Loading branch information
jef-n committed Oct 1, 2016
1 parent 330e95c commit 26d5c6b
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion doc/news.t2t
Expand Up @@ -96,7 +96,7 @@ This release has following new features:
- QGIS Server : STARTINDEX param in WFS GetFeature Request
- QGIS Server : showFeatureCount in GetLegendGraphic
- QGIS Server : Enhance store project keyword list
- QGIS Server : Option to avoid rendering artefacts at edges of tiles
- QGIS Server : Option to avoid rendering artifacts at edges of tiles
- QGIS Server : WMS INSPIRE Capabilities
- QGIS Server : Configuration checker in project properties
- QGIS Server : Add short name to layers, groups and project
Expand Down
2 changes: 1 addition & 1 deletion python/core/qgsdataprovider.sip
Expand Up @@ -250,7 +250,7 @@ class QgsDataProvider : QObject
*
* This is aimed at providers that can open differently the connection to
* the datasource, according it to be in update mode or in read-only mode.
* This method shall be balanced with a succesful call to enterUpdateMode().
* This method shall be balanced with a successful call to enterUpdateMode().
*
* Most providers will have an empty implementation for that method.
*
Expand Down
2 changes: 1 addition & 1 deletion python/core/raster/qgsrasterprojector.sip
Expand Up @@ -9,7 +9,7 @@ class QgsRasterProjector : QgsRasterInterface
%End

public:
/** Precison defines if each pixel is reprojected or approximate reprojection based
/** Precision defines if each pixel is reprojected or approximate reprojection based
* on an approximation matrix of reprojected points is used.
*/
enum Precision
Expand Down
2 changes: 1 addition & 1 deletion python/ext-libs/owslib/swe/common.py
Expand Up @@ -83,7 +83,7 @@ def __init__(self, element):
self.id = testXMLAttribute(element,"id") # string, optional

# Elements
self.extention = [] # anyType, min=0, max=X
self.extension = [] # anyType, min=0, max=X

class AbstractSWEIdentifiable(AbstractSWE):
def __init__(self, element):
Expand Down
2 changes: 1 addition & 1 deletion python/ext-libs/owslib/wmts.py
Expand Up @@ -582,7 +582,7 @@ def __init__(self, elem, parent=None, index=0, parse_remote_metadata=False):

@property
def tilematrixsets(self):
# NB. This attribute has been superseeded by the
# NB. This attribute has been superceeded by the
# `tilematrixsetlinks` attribute defined below, but is included
# for now to provide continuity.
warnings.warn("The 'tilematrixsets' attribute has been deprecated"
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -212,7 +212,7 @@ def load(self):
QMessageBox.critical(
self,
self.tr('Error'),
self.tr('An error occured while reading your file.'))
self.tr('An error occurred while reading your file.'))

def setValueInWidget(self, widget, value):
if isinstance(widget, (BatchInputSelectionPanel, QLineEdit, FileSelectionPanel)):
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsdataprovider.h
Expand Up @@ -338,7 +338,7 @@ class CORE_EXPORT QgsDataProvider : public QObject
*
* This is aimed at providers that can open differently the connection to
* the datasource, according it to be in update mode or in read-only mode.
* This method shall be balanced with a succesful call to enterUpdateMode().
* This method shall be balanced with a successful call to enterUpdateMode().
*
* Most providers will have an empty implementation for that method.
*
Expand Down
10 changes: 5 additions & 5 deletions src/core/qgsvectorlayerfeatureiterator.cpp
Expand Up @@ -534,14 +534,14 @@ void QgsVectorLayerFeatureIterator::prepareExpression( int fieldIdx )

Q_FOREACH ( const QString& col, exp->referencedColumns() )
{
int dependantFieldIdx = mSource->mFields.fieldNameIndex( col );
int dependentFieldIdx = mSource->mFields.fieldNameIndex( col );
if ( mRequest.flags() & QgsFeatureRequest::SubsetOfAttributes )
{
mRequest.setSubsetOfAttributes( mRequest.subsetOfAttributes() << dependantFieldIdx );
mRequest.setSubsetOfAttributes( mRequest.subsetOfAttributes() << dependentFieldIdx );
}
// also need to fetch this dependant field
if ( !mPreparedFields.contains( dependantFieldIdx ) && !mFieldsToPrepare.contains( dependantFieldIdx ) )
mFieldsToPrepare << dependantFieldIdx;
// also need to fetch this dependent field
if ( !mPreparedFields.contains( dependentFieldIdx ) && !mFieldsToPrepare.contains( dependentFieldIdx ) )
mFieldsToPrepare << dependentFieldIdx;
}

if ( exp->needsGeometry() )
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterprojector.h
Expand Up @@ -38,7 +38,7 @@ class QgsPoint;
class CORE_EXPORT QgsRasterProjector : public QgsRasterInterface
{
public:
/** Precison defines if each pixel is reprojected or approximate reprojection based
/** Precision defines if each pixel is reprojected or approximate reprojection based
* on an approximation matrix of reprojected points is used.
*/
enum Precision
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/evis/README.TXT
Expand Up @@ -7,7 +7,7 @@ This plugin was originally written and distributed by the Center for Biodiversit
http://biodiversityinformatics.amnh.org/open_source/evis/
eVis was contributed to the QGIS project on 2009-07-01.

eVis was started in 2007 with QGIS v0.7.0. It was our first experience with QGIS and QT. Since its early beginings, the QGIS API has under gone many changes and advances, and as a result there are still some old ideas in this code and much room for improvement. Were we to start this plugin now, we would have done it quite differently! There is still much room for imporovement. We hope the QGIS community will find eVis useful and extend its capabilities to make it even more robust.
eVis was started in 2007 with QGIS v0.7.0. It was our first experience with QGIS and QT. Since its early beginnings, the QGIS API has under gone many changes and advances, and as a result there are still some old ideas in this code and much room for improvement. Were we to start this plugin now, we would have done it quite differently! There is still much room for improvement. We hope the QGIS community will find eVis useful and extend its capabilities to make it even more robust.



Expand Down

0 comments on commit 26d5c6b

Please sign in to comment.