diff options
author | Tobias Weimer <wishmaster51@gmail.com> | 2021-05-22 11:46:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 11:46:04 +0200 |
commit | e1ced85d4b88044c8600de8235e6da6ced7cd0d4 (patch) | |
tree | 33cfe663eb15e144dfc1682bafcfe4def7bccecb /plugins/QuickSearch | |
parent | 0c4269835c6e029a6dc727928de67ce67d56c677 (diff) |
QuickSearch:
Fixed custom status retrieval
Diffstat (limited to 'plugins/QuickSearch')
-rw-r--r-- | plugins/QuickSearch/src/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/QuickSearch/src/window.cpp b/plugins/QuickSearch/src/window.cpp index e49a871ec5..3e8984f25d 100644 --- a/plugins/QuickSearch/src/window.cpp +++ b/plugins/QuickSearch/src/window.cpp @@ -263,7 +263,7 @@ INT_PTR QSMainDlg::NewLVProc(UINT msg, WPARAM wParam, LPARAM lParam) ics.status = &iStatus; ics.flags = CSSF_DEFAULT_NAME | CSSF_MASK_NAME | CSSF_UNICODE; ics.pwszName = buf; - CallProtoService(pRow->szProto, PS_GETCUSTOMSTATUSEX); + CallProtoService(pRow->szProto, PS_GETCUSTOMSTATUSEX, 0, (LPARAM)&ics); ti.lpszText = TranslateW(buf); } } |