Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix compile errors and warnings
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9530 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Oct 24, 2008
1 parent 67fb200 commit b182a5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/core/composer/qgsnumericscalebarstyle.cpp
Expand Up @@ -50,7 +50,7 @@ void QgsNumericScaleBarStyle::draw( QPainter* p, double xOffset ) const
p->save();
p->setFont( mScaleBar->font() );

mScaleBar->drawText( p, mScaleBar->pen().widthF() + mScaleBar->boxContentSpace(), mScaleBar->boxContentSpace() + mScaleBar->fontAscentMM( mScaleBar->font() ), scaleText(), mScaleBar->font() );
mScaleBar->drawText( p, mScaleBar->pen().widthF() + mScaleBar->boxContentSpace(), mScaleBar->boxContentSpace() + mScaleBar->fontAscentMillimeters( mScaleBar->font() ), scaleText(), mScaleBar->font() );

p->restore();
}
Expand All @@ -63,8 +63,8 @@ QRectF QgsNumericScaleBarStyle::calculateBoxSize() const
return rect;
}

double textWidth = mScaleBar->textWidthMM( mScaleBar->font(), scaleText() );
double textHeight = mScaleBar->fontAscentMM( mScaleBar->font() );
double textWidth = mScaleBar->textWidthMillimeters( mScaleBar->font(), scaleText() );
double textHeight = mScaleBar->fontAscentMillimeters( mScaleBar->font() );

return QRectF( mScaleBar->transform().dx(), mScaleBar->transform().dy(), 2 * mScaleBar->boxContentSpace()
+ 2 * mScaleBar->pen().width() + textWidth,
Expand Down
1 change: 0 additions & 1 deletion src/core/qgsproject.cpp
Expand Up @@ -1025,7 +1025,6 @@ bool QgsProject::write()
"may be corrupted on disk. Try clearing some space on the volume and "
"check file permissions before pressing save again." ) +
imp_->file.fileName() );
return false;
}

dirty( false ); // reset to pristine state
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.cpp
Expand Up @@ -2426,7 +2426,7 @@ bool QgsVectorLayer::readSymbology( const QDomNode& node, QString& errorMessage
QDomNode uniquevaluenode = node.namedItem( "uniquevalue" );

QgsRenderer * renderer = 0;
int returnCode;
int returnCode = 1;

if ( !singlenode.isNull() )
{
Expand Down

0 comments on commit b182a5e

Please sign in to comment.