Skip to content

Commit

Permalink
Specify bgcolour as 152,219,249 so it doesnt look so turdacious on wi…
Browse files Browse the repository at this point in the history
…ndows

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8021 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jan 21, 2008
1 parent f46dc1a commit f616268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/core/qgsrenderchecker.cpp
Expand Up @@ -55,8 +55,8 @@ bool QgsRenderChecker::runTest( QString theTestName )
QImage myImage( myExpectedImage.width() , myExpectedImage.height(), QImage::Format_RGB32 );
QImage myDifferenceImage( myExpectedImage.width() , myExpectedImage.height(), QImage::Format_RGB32);
QString myResultDiffImage = QDir::tempPath() + QDir::separator() + theTestName + "_result_diff.png";
myImage.fill ( QColor ( "#98dbf9" ).pixel() );
myDifferenceImage.fill ( QColor ( "#98dbf9" ).pixel() );
myImage.fill ( QColor ( 152,219,249 ).pixel() );
myDifferenceImage.fill ( QColor ( 152,219,249 ).pixel() );
QPainter myPainter( &myImage );
mpMapRenderer->setOutputSize( QSize ( myExpectedImage.width(),myExpectedImage.height() ),72 );
QTime myTime;
Expand Down

0 comments on commit f616268

Please sign in to comment.