Skip to content

Commit b979774

Browse files
committedFeb 21, 2014
Fix typo in renderchecker output
1 parent 5748abf commit b979774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/core/qgsrenderchecker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ bool QgsRenderChecker::compareImages( QString theTestName,
234234
mReport += "<tr><td colspan=2>";
235235
mReport += "Test image and result image for " + theTestName + "<br>"
236236
"Expected size: " + QString::number( myExpectedImage.width() ).toLocal8Bit() + "w x " +
237-
QString::number( myExpectedImage.width() ).toLocal8Bit() + "h (" +
237+
QString::number( myExpectedImage.height() ).toLocal8Bit() + "h (" +
238238
QString::number( mMatchTarget ).toLocal8Bit() + " pixels)<br>"
239239
"Actual size: " + QString::number( myResultImage.width() ).toLocal8Bit() + "w x " +
240-
QString::number( myResultImage.width() ).toLocal8Bit() + "h (" +
240+
QString::number( myResultImage.height() ).toLocal8Bit() + "h (" +
241241
QString::number( myPixelCount ).toLocal8Bit() + " pixels)";
242242
mReport += "</td></tr>";
243243
mReport += "<tr><td colspan = 2>\n";

0 commit comments

Comments
 (0)
Please sign in to comment.