Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix windows build again (followup 3dcabfb and 70bff3f)
  • Loading branch information
jef-n committed Oct 27, 2015
1 parent b505be2 commit fe6456f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/qgsrenderchecker.cpp
Expand Up @@ -257,10 +257,9 @@ bool QgsRenderChecker::compareImages( const QString& theTestName,
}
if ( ! theRenderedImageFile.isEmpty() )
{
#ifndef Q_OS_WIN
mRenderedImageFile = theRenderedImageFile;
#else
mRenderedImageFile = theRenderedImageFile.replace( "\\", "/" );
#ifdef Q_OS_WIN
mRenderedImageFile = mRenderedImageFile.replace( "\\", "/" );
#endif
}

Expand Down

0 comments on commit fe6456f

Please sign in to comment.