Skip to content

Commit

Permalink
missed a spot
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdruppe committed Jul 31, 2024
1 parent 8bbb399 commit 4582e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion druntime/src/core/sys/windows/commctrl.d
Original file line number Diff line number Diff line change
Expand Up @@ -5859,7 +5859,7 @@ BOOL TreeView_DeleteItem(HWND w, HTREEITEM i) {
return cast(BOOL) SendMessage(w, TVM_DELETEITEM, 0, cast(LPARAM) i);
}

BOOL TreeView_DeleteAllItems(HWND w) {
BOOL TreeView_DeleteAllItems(HWND w) @system {
return cast(BOOL) SendMessage(w, TVM_DELETEITEM, 0, cast(LPARAM) TVI_ROOT);
}

Expand Down

0 comments on commit 4582e71

Please sign in to comment.