Skip to content

Commit f40e3a6

Browse files
committedApr 12, 2013
renamed doubleNear to qgsDoubleNear, QgsMalloc to qgsMalloc, QgsCalloc to qgsCalloc, QgsFree to qgsFree
1 parent 19377fb commit f40e3a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+150
-150
lines changed
 

‎src/analysis/raster/qgsrastercalculator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ bool QgsRasterCalculator::transformationsEqual( double* t1, double* t2 ) const
389389
{
390390
for ( int i = 0; i < 6; ++i )
391391
{
392-
if ( !doubleNear( t1[i], t2[i], 0.00001 ) )
392+
if ( !qgsDoubleNear( t1[i], t2[i], 0.00001 ) )
393393
{
394394
return false;
395395
}

‎src/analysis/raster/qgsrelief.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ void QgsRelief::optimiseClassBreaks( QList<int>& breaks, double* frequencies )
715715
continue;
716716
}
717717

718-
if ( doubleNear( a[i - 1 ], a[i] ) )
718+
if ( qgsDoubleNear( a[i - 1 ], a[i] ) )
719719
{
720720
continue;
721721
}

0 commit comments

Comments
 (0)