summaryrefslogtreecommitdiff
path: root/include/prewin.h
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-11-02 15:09:52 +0100
committerJulien Nabet <serval2412@yahoo.fr>2022-11-02 22:45:36 +0100
commitd60d9be3a01dac4a0758f251173d8c657c2a7b64 (patch)
treea1e39e37b909711cb4b25b77191c4b913b71e411 /include/prewin.h
parentc6dbb99dc629957b7276773c3c92b8721135d64e (diff)
Fix typo
Change-Id: If820dbb3d9232d84b0a830cbe950581190781547 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142173 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/prewin.h')
-rw-r--r--include/prewin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/prewin.h b/include/prewin.h
index 3e19a842de5d..7f826549de72 100644
--- a/include/prewin.h
+++ b/include/prewin.h
@@ -50,7 +50,7 @@
// C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/GdiplusTypes.h, but not for e.g.
// C:/Program Files (x86)/Windows Kits/10/Include/10.0.22000.0/um/GdiplusTypes.h which explicitly
// defines its own GDIPLUS_MIN/MAX macros. The easiest fix appears to be to define min/max here and
-// to undefin them again in postwin.h, until no supported version of the Windows SDK requires this
+// to undefine them again in postwin.h, until no supported version of the Windows SDK requires this
// hack any longer:
#define min(a, b) (((a) < (b)) ? (a) : (b))
#define max(a, b) (((a) > (b)) ? (a) : (b))