Module: wine
Branch: master
Commit: 471e949cff2c23df9943f4ebc3e4292be30cb914
URL: http://source.winehq.org/git/wine.git/?a=commit;h=471e949cff2c23df9943f4ebc…
Author: Rein Klazes <wijn(a)online.nl>
Date: Fri Feb 27 09:17:58 2009 +0100
user32: In SetMenuInfo() implement the MIM_APPLYTOSUBMENUS. Also set last error if called with invalid parameters with tests.
---
dlls/user32/menu.c | 57 ++++++++++-------
dlls/user32/tests/menu.c | 162 +++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 195 insertions(+), 24 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=471e949cff2c23df9943f…
Module: wine
Branch: master
Commit: b3e65ba399fbf876dcb94157f47a50cf479d6aa0
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3e65ba399fbf876dcb94157f…
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Fri Feb 27 17:57:39 2009 +0800
gdi32: Revert an unrelated part of 028617b90ba586bdb30723c700eea888c159ada7.
It was not a very nice idea to break bitmap fonts which request a custom
width (therefore a transformation) in a patch that pretended to do something
unrelated.
---
dlls/gdi32/freetype.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index 6ca35c3..54bb999 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -4606,9 +4606,9 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
}
if(ft_face->glyph->format != ft_glyph_format_outline &&
- (needsTransform || format == GGO_NATIVE || format == GGO_BEZIER ||
- format == GGO_GRAY2_BITMAP || format == GGO_GRAY4_BITMAP ||
- format == GGO_GRAY8_BITMAP))
+ (format == GGO_NATIVE || format == GGO_BEZIER ||
+ format == GGO_GRAY2_BITMAP || format == GGO_GRAY4_BITMAP ||
+ format == GGO_GRAY8_BITMAP))
{
TRACE("loaded a bitmap\n");
LeaveCriticalSection( &freetype_cs );