Skip to content

Commit 09e7b2d

Browse files
author
timlinux
committedJan 21, 2008
Specify bgcolour as 152,219,249 so it doesnt look so turdacious on windows
git-svn-id: http://svn.osgeo.org/qgis/trunk@8021 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent ef30b63 commit 09e7b2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/src/core/qgsrenderchecker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ bool QgsRenderChecker::runTest( QString theTestName )
5555
QImage myImage( myExpectedImage.width() , myExpectedImage.height(), QImage::Format_RGB32 );
5656
QImage myDifferenceImage( myExpectedImage.width() , myExpectedImage.height(), QImage::Format_RGB32);
5757
QString myResultDiffImage = QDir::tempPath() + QDir::separator() + theTestName + "_result_diff.png";
58-
myImage.fill ( QColor ( "#98dbf9" ).pixel() );
59-
myDifferenceImage.fill ( QColor ( "#98dbf9" ).pixel() );
58+
myImage.fill ( QColor ( 152,219,249 ).pixel() );
59+
myDifferenceImage.fill ( QColor ( 152,219,249 ).pixel() );
6060
QPainter myPainter( &myImage );
6161
mpMapRenderer->setOutputSize( QSize ( myExpectedImage.width(),myExpectedImage.height() ),72 );
6262
QTime myTime;

0 commit comments

Comments
 (0)
Please sign in to comment.