Module: wine
Branch: master
Commit: 225c43b8124aaeb4c2e307379ab98036db1a38b3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=225c43b8124aaeb4c2e307379…
Author: Huw Davies <huw(a)codeweavers.com>
Date: Thu Sep 1 14:15:49 2016 +0100
rpcrt4/tests: Remove an unnecessary and confusing message.
Signed-off-by: Huw Davies <huw(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/rpcrt4/tests/rpc.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c
index d260827..23b9e36 100644
--- a/dlls/rpcrt4/tests/rpc.c
+++ b/dlls/rpcrt4/tests/rpc.c
@@ -431,13 +431,10 @@ static void test_I_RpcMapWin32Status(void)
RPC_STATUS rpc_status;
BOOL w2k3_up = FALSE;
- /* Windows 2003 and Vista return STATUS_UNSUCCESSFUL if given an unknown status */
+ /* Windows 2003 and above return STATUS_UNSUCCESSFUL if given an unknown status */
win32status = I_RpcMapWin32Status(9999);
if (win32status == STATUS_UNSUCCESSFUL)
- {
- trace("We are on Windows 2003 or Vista\n");
w2k3_up = TRUE;
- }
/* On Windows XP-SP1 and below some statuses are not mapped and return
* the given status
Module: wine
Branch: master
Commit: c247a36eedb5a046921bec1a0440a1ac144642d3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c247a36eedb5a046921bec1a0…
Author: Huw Davies <huw(a)codeweavers.com>
Date: Thu Sep 1 11:35:10 2016 +0100
user32: EC_USEFONTINFO behaviour depends on whether the font's charset is CJK or not.
In the non-CJK case, the margins are half of the width returned by
GdiGetCharDimensions() but only if the client rect's width is above a
certain size. There is an exception if the client rect is empty if
the font is sufficiently small.
In the CJK case, the margins are independent of the client rect size.
Signed-off-by: Huw Davies <huw(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/user32/edit.c | 60 ++++++++++---------
dlls/user32/tests/edit.c | 153 +++++++++++++++++++++++++++++++++++------------
2 files changed, 147 insertions(+), 66 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=c247a36eedb5a046921be…