Skip to content

Commit c45c93c

Browse files
author
jef
committedJun 9, 2009
fix build problems with GRASS 6.5 GEOS support and #1723
git-svn-id: http://svn.osgeo.org/qgis/trunk@10893 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f3567a0 commit c45c93c

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed
 

‎python/core/qgssymbol.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class QgsSymbol
7272
/** Get QImage representation of point symbol with current settings
7373
* and scaled (can be slow when scale != 1.0)
7474
*/
75-
virtual QImage getPointSymbolAsImage( double widthScale = 1.,
75+
virtual QImage getPointSymbolAsImage( double widthScale = 1.0,
7676
bool selected = false,
7777
QColor selectionColor = Qt::yellow,
7878
double scale = 1.0,

‎src/core/symbology/qgssymbol.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ class CORE_EXPORT QgsSymbol
101101

102102
/** Get QImage representation of point symbol with current settings
103103
*/
104-
virtual QImage getCachedPointSymbolAsImage( double widthScale = 1.,
104+
virtual QImage getCachedPointSymbolAsImage( double widthScale = 1.0,
105105
bool selected = false, QColor selectionColor = Qt::yellow );
106106

107107
/** Get QImage representation of point symbol with current settings
108108
* and scaled (can be slow when scale != 1.0)
109109
*/
110-
virtual QImage getPointSymbolAsImage( double widthScale = 1.,
110+
virtual QImage getPointSymbolAsImage( double widthScale = 1.0,
111111
bool selected = false,
112112
QColor selectionColor = Qt::yellow,
113113
double scale = 1.0,

‎src/plugins/grass/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ INCLUDE_DIRECTORIES(
142142
${GRASS_INCLUDE_DIR}
143143
${GDAL_INCLUDE_DIR}
144144
${PROJ_INCLUDE_DIR}
145+
${GEOS_INCLUDE_DIR}
145146
qtermwidget
146147
)
147148

‎src/providers/grass/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ INCLUDE_DIRECTORIES (
2727
${GRASS_INCLUDE_DIR}
2828
${GDAL_INCLUDE_DIR}
2929
${PROJ_INCLUDE_DIR}
30+
${GEOS_INCLUDE_DIR}
3031
)
3132

3233

0 commit comments

Comments
 (0)
Please sign in to comment.