Skip to content

Commit

Permalink
fix common typos
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13391 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 26, 2010
1 parent fa8f49d commit 9875255
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmake/SIPMacros.cmake
Expand Up @@ -54,7 +54,7 @@ MACRO(ADD_SIP_PYTHON_MODULE MODULE_NAME MODULE_SIP)

# We give this target a long logical target name.
# (This is to avoid having the library name clash with any already
# install library names. If that happens then cmake dependancy
# install library names. If that happens then cmake dependency
# tracking get confused.)
STRING(REPLACE "." "_" _logical_name ${MODULE_NAME})
SET(_logical_name "python_module_${_logical_name}")
Expand Down
1 change: 1 addition & 0 deletions scripts/spelling.dat
Expand Up @@ -443,6 +443,7 @@ statics:statistics
useage:usage
aribitary:arbitrary
colour:color
colours:colors
recommeneded:recommended
implementaed:implemented
containging:containing
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/vector/qgszonalstatistics.cpp
Expand Up @@ -285,7 +285,7 @@ void QgsZonalStatistics::statisticsFromPreciseIntersection( void* band, QgsGeome
pixelRectGeometry = QgsGeometry::fromRect( QgsRectangle( currentX - hCellSizeX, currentY - hCellSizeY, currentX + hCellSizeX, currentY + hCellSizeY ) );
if ( pixelRectGeometry )
{
//intersecton
//intersection
intersectGeometry = pixelRectGeometry->intersection( poly );
if ( intersectGeometry )
{
Expand Down
4 changes: 2 additions & 2 deletions src/core/symbology-ng/qgsmarkersymbollayerv2.cpp
Expand Up @@ -169,8 +169,8 @@ void QgsSimpleMarkerSymbolLayerV2::prepareCache( QgsSymbolV2RenderContext& conte
p.end();

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

if ( mSelCache == mCache )
{
Expand Down
3 changes: 1 addition & 2 deletions src/core/symbology-ng/qgssymbolv2.h
Expand Up @@ -137,8 +137,7 @@ class CORE_EXPORT QgsSymbolV2RenderContext
//! @note added in 1.5
void setRenderHints( int hints ) { mRenderHints = hints; }

// Colour used for selections

// Color used for selections
static QColor selectionColor();

double outputLineWidth( double width ) const;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -953,7 +953,7 @@ void QgsGeorefPluginGui::loadGCPs( /*bool verbose*/ )
{
line = points.readLine();
QStringList ls;
if ( line.contains( QRegExp( "," ) ) ) // in previous format "\t" is delemiter of points in new - ","
if ( line.contains( QRegExp( "," ) ) ) // in previous format "\t" is delimeter of points in new - ","
{
// points from new georeferencer
ls = line.split( "," );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrassrasterprovider.cpp
Expand Up @@ -109,7 +109,7 @@ QImage* QgsGrassRasterProvider::draw( QgsRectangle const & viewExtent, int pixe
QMessageBox::warning( 0, QObject::tr( "Warning" ), QObject::tr( "Cannot draw raster" ) + "\n"
+ e.what() );

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

0 comments on commit 9875255

Please sign in to comment.