Skip to content

Commit 56c7575

Browse files
author
jef
committedApr 26, 2010
fix common typos
git-svn-id: http://svn.osgeo.org/qgis/trunk@13391 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 313c107 commit 56c7575

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed
 

‎cmake/SIPMacros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ MACRO(ADD_SIP_PYTHON_MODULE MODULE_NAME MODULE_SIP)
5454

5555
# We give this target a long logical target name.
5656
# (This is to avoid having the library name clash with any already
57-
# install library names. If that happens then cmake dependancy
57+
# install library names. If that happens then cmake dependency
5858
# tracking get confused.)
5959
STRING(REPLACE "." "_" _logical_name ${MODULE_NAME})
6060
SET(_logical_name "python_module_${_logical_name}")

‎scripts/spelling.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,7 @@ statics:statistics
443443
useage:usage
444444
aribitary:arbitrary
445445
colour:color
446+
colours:colors
446447
recommeneded:recommended
447448
implementaed:implemented
448449
containging:containing

‎src/analysis/vector/qgszonalstatistics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void QgsZonalStatistics::statisticsFromPreciseIntersection( void* band, QgsGeome
285285
pixelRectGeometry = QgsGeometry::fromRect( QgsRectangle( currentX - hCellSizeX, currentY - hCellSizeY, currentX + hCellSizeX, currentY + hCellSizeY ) );
286286
if ( pixelRectGeometry )
287287
{
288-
//intersecton
288+
//intersection
289289
intersectGeometry = pixelRectGeometry->intersection( poly );
290290
if ( intersectGeometry )
291291
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ void QgsSimpleMarkerSymbolLayerV2::prepareCache( QgsSymbolV2RenderContext& conte
169169
p.end();
170170

171171
// Check that the selected version is different. If not, then re-render,
172-
// filling the background with the selection colour and using the normal
173-
// colours for the symbol .. could be ugly!
172+
// filling the background with the selection color and using the normal
173+
// colors for the symbol .. could be ugly!
174174

175175
if ( mSelCache == mCache )
176176
{

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ class CORE_EXPORT QgsSymbolV2RenderContext
137137
//! @note added in 1.5
138138
void setRenderHints( int hints ) { mRenderHints = hints; }
139139

140-
// Colour used for selections
141-
140+
// Color used for selections
142141
static QColor selectionColor();
143142

144143
double outputLineWidth( double width ) const;

‎src/plugins/georeferencer/qgsgeorefplugingui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ void QgsGeorefPluginGui::loadGCPs( /*bool verbose*/ )
953953
{
954954
line = points.readLine();
955955
QStringList ls;
956-
if ( line.contains( QRegExp( "," ) ) ) // in previous format "\t" is delemiter of points in new - ","
956+
if ( line.contains( QRegExp( "," ) ) ) // in previous format "\t" is delimeter of points in new - ","
957957
{
958958
// points from new georeferencer
959959
ls = line.split( "," );

‎src/providers/grass/qgsgrassrasterprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ QImage* QgsGrassRasterProvider::draw( QgsRectangle const & viewExtent, int pixe
109109
QMessageBox::warning( 0, QObject::tr( "Warning" ), QObject::tr( "Cannot draw raster" ) + "\n"
110110
+ e.what() );
111111

112-
// We dont set mValid to false, because the raster can be recreated and work next time
112+
// We don't set mValid to false, because the raster can be recreated and work next time
113113
return image;
114114
}
115115
QgsDebugMsg( QString("%1 bytes read from modules stdout").arg(data.size()) );

0 commit comments

Comments
 (0)