Skip to content

Commit

Permalink
upd project sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Jan 11, 2025
1 parent 512339d commit f1b5577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/listview.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,15 @@ VOID _app_listview_addnetworkitem (
_In_ ULONG_PTR network_hash
)
{
_r_listview_additem (hwnd, IDC_NETWORK, 0, LPSTR_TEXTCALLBACK, I_IMAGECALLBACK, I_GROUPIDCALLBACK, _app_listview_createcontext (network_hash));
_r_listview_additem (hwnd, IDC_NETWORK, INT_ERROR, LPSTR_TEXTCALLBACK, I_IMAGECALLBACK, I_GROUPIDCALLBACK, _app_listview_createcontext (network_hash));
}

VOID _app_listview_addlogitem (
_In_ HWND hwnd,
_In_ ULONG_PTR log_hash
)
{
_r_listview_additem (hwnd, IDC_LOG, 0, LPSTR_TEXTCALLBACK, I_IMAGECALLBACK, 0, _app_listview_createcontext (log_hash));
_r_listview_additem (hwnd, IDC_LOG, INT_ERROR, LPSTR_TEXTCALLBACK, I_IMAGECALLBACK, 0, _app_listview_createcontext (log_hash));
}

BOOLEAN _app_listview_islocked (
Expand Down

0 comments on commit f1b5577

Please sign in to comment.