Update src/qt/dc.cpp

Co-Authored-By: ffa-grahamdawes <graham.dawes@geoteric.com>
This commit is contained in:
Cătălin Răceanu
2018-12-20 13:59:24 +00:00
committed by GitHub
parent ae825ecd86
commit 8f5acb341e

View File

@@ -154,7 +154,8 @@ void wxQtDCImpl::DoGetSizeMM(int* width, int* height) const
deviceHeightMM = 0; deviceHeightMM = 0;
} }
if (width) *width = deviceWidthMM; if ( width )
*width = deviceWidthMM;
if (height) *height = deviceHeightMM; if (height) *height = deviceHeightMM;
} }