aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
diff options
context:
space:
mode:
authormitchell <unknown>2020-01-03 19:26:20 -0500
committermitchell <unknown>2020-01-03 19:26:20 -0500
commit40b67336c8ac74c0ce729035b7b088c8ba0ca6ad (patch)
tree44e75c492ba7287a02ff9a87b227f87c6487c26b /win32/PlatWin.cxx
parentd4b4c6d814940d9178284e0af69f574fdce77da0 (diff)
downloadscintilla-mirror-40b67336c8ac74c0ce729035b7b088c8ba0ca6ad.tar.gz
Fixed a build error on Windows introduced by r7280 (changeset 9cf6a15d6c85).
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r--win32/PlatWin.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index 44e758698..6553b7486 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -67,6 +67,12 @@ namespace Scintilla {
UINT CodePageFromCharSet(DWORD characterSet, UINT documentCodePage);
+RECT RectFromPRectangle(PRectangle prc) noexcept {
+ RECT rc = { static_cast<LONG>(prc.left), static_cast<LONG>(prc.top),
+ static_cast<LONG>(prc.right), static_cast<LONG>(prc.bottom) };
+ return rc;
+}
+
#if defined(USE_D2D)
IDWriteFactory *pIDWriteFactory = nullptr;
ID2D1Factory *pD2DFactory = nullptr;