mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-22 00:14:55 -05: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.
|
# We give this target a long logical target name.
|
||||||
# (This is to avoid having the library name clash with any already
|
# (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.)
|
# tracking get confused.)
|
||||||
STRING(REPLACE "." "_" _logical_name ${MODULE_NAME})
|
STRING(REPLACE "." "_" _logical_name ${MODULE_NAME})
|
||||||
SET(_logical_name "python_module_${_logical_name}")
|
SET(_logical_name "python_module_${_logical_name}")
|
||||||
|
|||||||
@ -443,6 +443,7 @@ statics:statistics
|
|||||||
useage:usage
|
useage:usage
|
||||||
aribitary:arbitrary
|
aribitary:arbitrary
|
||||||
colour:color
|
colour:color
|
||||||
|
colours:colors
|
||||||
recommeneded:recommended
|
recommeneded:recommended
|
||||||
implementaed:implemented
|
implementaed:implemented
|
||||||
containging:containing
|
containging:containing
|
||||||
|
|||||||
@ -285,7 +285,7 @@ void QgsZonalStatistics::statisticsFromPreciseIntersection( void* band, QgsGeome
|
|||||||
pixelRectGeometry = QgsGeometry::fromRect( QgsRectangle( currentX - hCellSizeX, currentY - hCellSizeY, currentX + hCellSizeX, currentY + hCellSizeY ) );
|
pixelRectGeometry = QgsGeometry::fromRect( QgsRectangle( currentX - hCellSizeX, currentY - hCellSizeY, currentX + hCellSizeX, currentY + hCellSizeY ) );
|
||||||
if ( pixelRectGeometry )
|
if ( pixelRectGeometry )
|
||||||
{
|
{
|
||||||
//intersecton
|
//intersection
|
||||||
intersectGeometry = pixelRectGeometry->intersection( poly );
|
intersectGeometry = pixelRectGeometry->intersection( poly );
|
||||||
if ( intersectGeometry )
|
if ( intersectGeometry )
|
||||||
{
|
{
|
||||||
|
|||||||
@ -169,8 +169,8 @@ void QgsSimpleMarkerSymbolLayerV2::prepareCache( QgsSymbolV2RenderContext& conte
|
|||||||
p.end();
|
p.end();
|
||||||
|
|
||||||
// Check that the selected version is different. If not, then re-render,
|
// Check that the selected version is different. If not, then re-render,
|
||||||
// filling the background with the selection colour and using the normal
|
// filling the background with the selection color and using the normal
|
||||||
// colours for the symbol .. could be ugly!
|
// colors for the symbol .. could be ugly!
|
||||||
|
|
||||||
if ( mSelCache == mCache )
|
if ( mSelCache == mCache )
|
||||||
{
|
{
|
||||||
|
|||||||
@ -137,8 +137,7 @@ class CORE_EXPORT QgsSymbolV2RenderContext
|
|||||||
//! @note added in 1.5
|
//! @note added in 1.5
|
||||||
void setRenderHints( int hints ) { mRenderHints = hints; }
|
void setRenderHints( int hints ) { mRenderHints = hints; }
|
||||||
|
|
||||||
// Colour used for selections
|
// Color used for selections
|
||||||
|
|
||||||
static QColor selectionColor();
|
static QColor selectionColor();
|
||||||
|
|
||||||
double outputLineWidth( double width ) const;
|
double outputLineWidth( double width ) const;
|
||||||
|
|||||||
@ -953,7 +953,7 @@ void QgsGeorefPluginGui::loadGCPs( /*bool verbose*/ )
|
|||||||
{
|
{
|
||||||
line = points.readLine();
|
line = points.readLine();
|
||||||
QStringList ls;
|
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
|
// points from new georeferencer
|
||||||
ls = line.split( "," );
|
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"
|
QMessageBox::warning( 0, QObject::tr( "Warning" ), QObject::tr( "Cannot draw raster" ) + "\n"
|
||||||
+ e.what() );
|
+ 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;
|
return image;
|
||||||
}
|
}
|
||||||
QgsDebugMsg( QString("%1 bytes read from modules stdout").arg(data.size()) );
|
QgsDebugMsg( QString("%1 bytes read from modules stdout").arg(data.size()) );
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user