From: Diego Colin <dev@docolta.com> --- dlls/comctl32/imagelist.c | 2 +- dlls/comctl32/tooltips.c | 6 +++--- dlls/comctl32/treeview.c | 2 +- dlls/comctl32_v6/taskdialog.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index ab65bca7c07..79c5aae2da3 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 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/tooltips.c b/dlls/comctl32/tooltips.c index 876736b11e4..b882a7013b9 100644 --- a/dlls/comctl32/tooltips.c +++ b/dlls/comctl32/tooltips.c @@ -79,7 +79,7 @@ * tool. * * - * infoPtr->nTool is the tool the mouse was on on the last relayed MM + * infoPtr->nTool is the tool the mouse was on the last relayed MM * or timer expiry or -1 if the mouse was not on a tool. * * infoPtr->nCurrentTool is the tool for which the tip is currently @@ -136,7 +136,7 @@ typedef struct INT xTrackPos; INT yTrackPos; INT nMaxTipWidth; - INT nTool; /* tool that mouse was on on last relayed mouse move */ + INT nTool; /* tool that mouse was on last relayed mouse move */ INT nCurrentTool; INT nTrackTool; INT nReshowTime; @@ -1231,7 +1231,7 @@ TOOLTIPS_DelToolT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW) /* update any indices affected by delete */ - /* destroying tool that mouse was on on last relayed mouse move */ + /* destroying tool that mouse was on last relayed mouse move */ if (infoPtr->nTool == nTool) /* -1 means no current tool (0 means first tool) */ infoPtr->nTool = -1; diff --git a/dlls/comctl32/treeview.c b/dlls/comctl32/treeview.c index 8b38f098553..6e4ff080bbf 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 first) 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/10249