Skip to content

Commit 22af5bf

Browse files
committedOct 8, 2016
fix typos
1 parent 3a76708 commit 22af5bf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎resources/context_help/HeatmapGui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ clustering of points.</p>
2626

2727
<h4>Rows and Columns</h4>
2828
<p>Used to change the dimensions of the output raster file. These values are also linked to the <b>Cell size X</b> and <b>Cell size Y</b> values.
29-
Increasing the number of rows or colums will decrease the cell size and increase the file size of the output file. The values in Rows and Columns
29+
Increasing the number of rows or columns will decrease the cell size and increase the file size of the output file. The values in Rows and Columns
3030
are also linked, so doubling the number of rows will automatically double the number of columns and the cell sizes will also be halved. The geographical area of the output raster will remain the same!</p>
3131

3232
<h4>Cell size X and Y</h4>

‎src/app/gps/qwtpolar-0.1/qwt_polar_plot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ const QwtTextLabel *QwtPolarPlot::titleLabel() const
186186
187187
\param legend Legend
188188
\param pos The legend's position. For top/left position the number
189-
of colums will be limited to 1, otherwise it will be set to
189+
of columns will be limited to 1, otherwise it will be set to
190190
unlimited.
191191
192192
\param ratio Ratio between legend and the bounding rect

‎src/app/gps/qwtpolar-1.0/qwt_polar_plot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ const QwtTextLabel *QwtPolarPlot::titleLabel() const
167167
168168
\param legend Legend
169169
\param pos The legend's position. For top/left position the number
170-
of colums will be limited to 1, otherwise it will be set to
170+
of columns will be limited to 1, otherwise it will be set to
171171
unlimited.
172172
173173
\param ratio Ratio between legend and the bounding rect

‎src/app/gps/qwtpolar-1.1.1/qwt_polar_plot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const QwtTextLabel *QwtPolarPlot::titleLabel() const
171171
172172
\param legend Legend
173173
\param pos The legend's position. For top/left position the number
174-
of colums will be limited to 1, otherwise it will be set to
174+
of columns will be limited to 1, otherwise it will be set to
175175
unlimited.
176176
177177
\param ratio Ratio between legend and the bounding rect

‎src/plugins/dxf2shp_converter/dxflib/src/dl_entities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ struct DXFLIB_EXPORT DL_InsertData {
697697
double sz;
698698
/*! Rotation angle in degrees. */
699699
double angle;
700-
/*! Number of colums if we insert an array of the block or 1. */
700+
/*! Number of columns if we insert an array of the block or 1. */
701701
int cols;
702702
/*! Number of rows if we insert an array of the block or 1. */
703703
int rows;

‎src/providers/gdal/qgsgdalprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ void QgsGdalProvider::readBlock( int theBandNo, QgsRectangle const & theExtent,
600600
char *tmpBlock = ( char * )qgsMalloc( dataSize * tmpWidth * tmpHeight );
601601
if ( ! tmpBlock )
602602
{
603-
QgsDebugMsg( QString( "Coudn't allocate temporary buffer of %1 bytes" ).arg( dataSize * tmpWidth * tmpHeight ) );
603+
QgsDebugMsg( QString( "Couldn't allocate temporary buffer of %1 bytes" ).arg( dataSize * tmpWidth * tmpHeight ) );
604604
return;
605605
}
606606
GDALRasterBandH gdalBand = GDALGetRasterBand( mGdalDataset, theBandNo );

0 commit comments

Comments
 (0)
Please sign in to comment.