From 8ede2351cc610f9c5e7e3f001ffc25f488c1a4a5 Mon Sep 17 00:00:00 2001 From: Steve Browne Date: Tue, 24 Nov 2015 19:42:14 -0500 Subject: [PATCH] Fixed indentation in ToDIP to make it consistent with FromDIP. --- src/common/wincmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 71e9723041..4f2a0b3d29 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -2887,7 +2887,7 @@ wxWindowBase::ToDIP(const wxSize& sz, const wxWindowBase* WXUNUSED(w)) // Take care to not scale -1 because it has a special meaning of // "unspecified" which should be preserved. return wxSize(sz.x == -1 ? -1 : wxMulDivInt32(sz.x, BASELINE_DPI, dpi.x), - sz.y == -1 ? -1 : wxMulDivInt32(sz.y, BASELINE_DPI, dpi.y)); + sz.y == -1 ? -1 : wxMulDivInt32(sz.y, BASELINE_DPI, dpi.y)); } #endif // !wxHAVE_DPI_INDEPENDENT_PIXELS