From 0c5cabbed4d7a37eacc71e1db90308c2c8faabdc Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 1 Oct 2004 09:45:37 +0000 Subject: [PATCH] define DS_SHELLFONT for win32 too git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3687 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/Platform.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Platform.h b/Source/Platform.h index 0c98a3bb..b339cef1 100644 --- a/Source/Platform.h +++ b/Source/Platform.h @@ -433,7 +433,6 @@ typedef WORD LANGID; # define DS_FIXEDSYS 8 # define DS_SETFONT 64 -# define DS_SHELLFONT (DS_SETFONT | DS_FIXEDSYS) # define WS_EX_RIGHT 0x1000 # define WS_EX_RIGHTSCROLLBAR 0 @@ -444,6 +443,10 @@ typedef WORD LANGID; # define PBS_SMOOTH 1 #endif +#ifndef DS_SHELLFONT +# define DS_SHELLFONT (DS_SETFONT | DS_FIXEDSYS) +#endif + // brush styles #ifndef BS_SOLID