mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
fix common typos
git-svn-id: http://svn.osgeo.org/qgis/trunk@13391 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
313c107403
commit
56c7575d60
@ -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}")
|
||||
|
@ -443,6 +443,7 @@ statics:statistics
|
||||
useage:usage
|
||||
aribitary:arbitrary
|
||||
colour:color
|
||||
colours:colors
|
||||
recommeneded:recommended
|
||||
implementaed:implemented
|
||||
containging:containing
|
||||
|
@ -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 )
|
||||
{
|
||||
|
@ -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 )
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -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( "," );
|
||||
|
@ -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()) );
|
||||
|
Loading…
x
Reference in New Issue
Block a user