Module: wine Branch: master Commit: 3e59606a3c7dffda0bb39d3c54b89851061c40ff URL: http://source.winehq.org/git/wine.git/?a=commit;h=3e59606a3c7dffda0bb39d3c54...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sat Oct 1 21:44:54 2011 +0200
wordpad: Don't compare with TRUE.
---
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;