Module: wine
Branch: master
Commit: 9c11c636b38143a95e5e82ebba69b439006b40d7
URL: https://source.winehq.org/git/wine.git/?a=commit;h=9c11c636b38143a95e5e82eb…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Thu Jun 18 13:34:29 2020 +0200
comctl32: Clarify a comment.
Signed-off-by: André Hentschel <nerv(a)dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/comctl32/comboex.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c
index c3c39be305..61b6383136 100644
--- a/dlls/comctl32/comboex.c
+++ b/dlls/comctl32/comboex.c
@@ -1379,9 +1379,7 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
} else {
/* drawing combo/edit entry */
if (IsWindowVisible(infoPtr->hwndEdit)) {
- /* if we have an edit control, the slave the
- * selection state to the Edit focus state
- */
+ /* if we have an edit control, set the selection state from the edit focus state */
if (infoPtr->flags & WCBE_EDITFOCUSED)
drawstate = ILD_SELECTED;
} else
Module: wine
Branch: master
Commit: 9f974579b6ecf8d6cc2d6ee0ace477a3d546f0df
URL: https://source.winehq.org/git/wine.git/?a=commit;h=9f974579b6ecf8d6cc2d6ee0…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Thu Jun 18 13:34:27 2020 +0200
winex11.drv: Change slave to a more neutral word.
Signed-off-by: André Hentschel <nerv(a)dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winex11.drv/xrandr.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/winex11.drv/xrandr.c b/dlls/winex11.drv/xrandr.c
index b1a43e48ea..dce4e6739e 100644
--- a/dlls/winex11.drv/xrandr.c
+++ b/dlls/winex11.drv/xrandr.c
@@ -948,7 +948,7 @@ static BOOL xrandr14_get_adapters( ULONG_PTR gpu_id, struct x11drv_adapter **new
if (!output_info->crtc || !crtc_info->mode)
detached = TRUE;
- /* Ignore mirroring output slaves because mirrored monitors are under the same adapter */
+ /* Ignore mirroring output replicas because mirrored monitors are under the same adapter */
mirrored = FALSE;
if (!detached)
{
@@ -970,7 +970,7 @@ static BOOL xrandr14_get_adapters( ULONG_PTR gpu_id, struct x11drv_adapter **new
continue;
/* Some outputs may have the same coordinates, aka mirrored. Choose the output with
- * the lowest value as primary and the rest will then be slaves in a mirroring set */
+ * the lowest value as primary and the rest will then be replicas in a mirroring set */
if (crtc_info->x == enum_crtc_info->x &&
crtc_info->y == enum_crtc_info->y &&
crtc_info->width == enum_crtc_info->width &&
@@ -1079,7 +1079,7 @@ static BOOL xrandr14_get_monitors( ULONG_PTR adapter_id, struct x11drv_monitor *
goto done;
}
- /* Inactive but attached monitor, no need to check for mirrored/slave monitors */
+ /* Inactive but attached monitor, no need to check for mirrored/replica monitors */
if (!output_info->crtc || !crtc_info->mode)
{
lstrcpyW( monitors[monitor_count].name, generic_nonpnp_monitorW );