Skip to content

Commit c11c1cf

Browse files
luzpaznyalldawson
authored andcommittedMay 7, 2018
Source typos
1 parent f01bff2 commit c11c1cf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/gui/qgsvariableeditorwidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class QgsVariableEditorTree : public QTreeWidget
167167

168168
public:
169169

170-
enum VaribleRoles
170+
enum VariableRoles
171171
{
172172
ContextIndex = Qt::UserRole,
173173
RowBaseColor

‎src/plugins/georeferencer/qgsimagewarper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@ void *QgsImageWarper::addGeoToPixelTransform( GDALTransformerFunc GDALTransforme
266266
return ( void * )chain;
267267
}
268268

269-
void QgsImageWarper::destroyGeoToPixelTransform( void *GeoToPixelTransfomArg ) const
269+
void QgsImageWarper::destroyGeoToPixelTransform( void *GeoToPixelTransformArg ) const
270270
{
271-
delete static_cast<TransformChain *>( GeoToPixelTransfomArg );
271+
delete static_cast<TransformChain *>( GeoToPixelTransformArg );
272272
}
273273

274274
int QgsImageWarper::GeoToPixelTransform( void *pTransformerArg, int bDstToSrc, int nPointCount,

‎src/plugins/georeferencer/qgsimagewarper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class QgsImageWarper
8282
* \returns Argument to use with the static GDAL callback \ref GeoToPixelTransform
8383
*/
8484
void *addGeoToPixelTransform( GDALTransformerFunc GDALTransformer, void *GDALTransformerArg, double *padfGeotransform ) const;
85-
void destroyGeoToPixelTransform( void *GeoToPixelTransfomArg ) const;
85+
void destroyGeoToPixelTransform( void *GeoToPixelTransformArg ) const;
8686

8787
bool openSrcDSAndGetWarpOpt( const QString &input, ResamplingMethod resampling,
8888
const GDALTransformerFunc &pfnTransform, gdal::dataset_unique_ptr &hSrcDS,

0 commit comments

Comments
 (0)
Please sign in to comment.