Skip to content

Commit 942ff37

Browse files
author
jef
committedJun 14, 2010
fix windows build
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13731 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/gui/symbology-ng/qgsrulebasedrendererv2widget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class QMenu;
2525

2626
#include <QTreeWidget>
2727

28-
class QgsRendererRulesTreeWidget : public QTreeWidget
28+
class GUI_EXPORT QgsRendererRulesTreeWidget : public QTreeWidget
2929
{
3030
Q_OBJECT
3131

‎src/plugins/georeferencer/qgsresidualplotitem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ void QgsResidualPlotItem::paint( QPainter* painter, const QStyleOptionGraphicsIt
116116
if ( scaleBarWidthUnits < 1 )
117117
{
118118
nDecPlaces = -floor( log10( scaleBarWidthUnits ) );
119-
scaleBarWidthUnits *= pow( 10.0, nDecPlaces );
119+
scaleBarWidthUnits *= pow( 10.0, nDecPlaces );
120120
scaleBarWidthUnits = ( int )( scaleBarWidthUnits + 0.5 );
121-
scaleBarWidthUnits /= pow( 10.0, nDecPlaces );
121+
scaleBarWidthUnits /= pow( 10.0, nDecPlaces );
122122
}
123123
else
124124
{

0 commit comments

Comments
 (0)
Please sign in to comment.