wordpad: Don't compare with TRUE.

Michael Stefaniuc mstefani at redhat.de
Sat Oct 1 14:44:54 CDT 2011


---
 programs/wordpad/wordpad.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/wordpad/wordpad.c b/programs/wordpad/wordpad.c
index feb618c..c5317ab 100644
--- a/programs/wordpad/wordpad.c
+++ b/programs/wordpad/wordpad.c
@@ -601,9 +601,9 @@ static void dialog_choose_font(void)
             fmt.dwEffects |= CFE_BOLD;
         if(cf.nFontType & ITALIC_FONTTYPE)
             fmt.dwEffects |= CFE_ITALIC;
-        if(cf.lpLogFont->lfUnderline == TRUE)
+        if(cf.lpLogFont->lfUnderline)
             fmt.dwEffects |= CFE_UNDERLINE;
-        if(cf.lpLogFont->lfStrikeOut == TRUE)
+        if(cf.lpLogFont->lfStrikeOut)
             fmt.dwEffects |= CFE_STRIKEOUT;
 
         fmt.crTextColor = cf.rgbColors;
-- 
1.7.4.4



More information about the wine-patches mailing list