Huw Davies : include: Fix TXTVIEW_INACTIVE to be -1.
Module: wine Branch: master Commit: fabef7ae2b53bb244ba9ad784d6e22c36f691a1a URL: https://source.winehq.org/git/wine.git/?a=commit;h=fabef7ae2b53bb244ba9ad784... Author: Huw Davies <huw(a)codeweavers.com> Date: Mon Sep 28 11:16:59 2020 +0100 include: Fix TXTVIEW_INACTIVE to be -1. Signed-off-by: Huw Davies <huw(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/textserv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/textserv.h b/include/textserv.h index d3583f3a96..1272a6bba0 100644 --- a/include/textserv.h +++ b/include/textserv.h @@ -174,7 +174,7 @@ enum TXTNATURALSIZE { enum TXTVIEW { TXTVIEW_ACTIVE = 0, - TXTVIEW_INACTIVE = 1 + TXTVIEW_INACTIVE = -1 }; #define TXTBIT_RICHTEXT 0x000001
participants (1)
-
Alexandre Julliard