From: Diego Colin <dev@docolta.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> --- dlls/comctl32/imagelist.c | 2 +- dlls/comctl32/treeview.c | 2 +- dlls/comctl32_v6/taskdialog.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index ab65bca7c07..ba340645db8 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -180,7 +180,7 @@ static inline int get_dib_image_size( const BITMAPINFO *info ) * imagelist_copy_images() * * Copies a block of count images from offset src in the list to offset dest. - * Images are copied a row at at time. Assumes hdcSrc and hdcDest are different. + * Images are copied a row at a time. Assumes hdcSrc and hdcDest are different. */ static inline void imagelist_copy_images( HIMAGELIST himl, HDC hdcSrc, HDC hdcDest, UINT src, UINT count, UINT dest ) diff --git a/dlls/comctl32/treeview.c b/dlls/comctl32/treeview.c index 8b38f098553..ca72ba77091 100644 --- a/dlls/comctl32/treeview.c +++ b/dlls/comctl32/treeview.c @@ -445,7 +445,7 @@ TREEVIEW_GetNextListItem(const TREEVIEW_INFO *infoPtr, const TREEVIEW_ITEM *tvIt /*************************************************************************** * This method returns the nth item starting at the given item. It returns - * the last item (or first) we we run out of items. + * the last item (or the first) when we run out of items. * * Will scroll backward if count is <0. * forward if count is >0. diff --git a/dlls/comctl32_v6/taskdialog.c b/dlls/comctl32_v6/taskdialog.c index 09d2ad718aa..5018eb01ed4 100644 --- a/dlls/comctl32_v6/taskdialog.c +++ b/dlls/comctl32_v6/taskdialog.c @@ -269,7 +269,7 @@ static void taskdialog_toggle_expando_control(struct taskdialog_info *dialog_inf GetWindowRect(dialog_info->expanded_info, &info_rect); /* If expanded information starts up not expanded, call taskdialog_layout() - * to to set size for expanded information control at least once */ + * to set size for expanded information control at least once */ if (IsRectEmpty(&info_rect)) { taskdialog_layout(dialog_info); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10325