diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-15 14:03:46 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-15 14:03:46 -0500 |
| commit | 063293456d929ffab90b8b8c9e609083644b04a1 (patch) | |
| tree | 11e5a0e7cda2e72b88b6edd77b4ebe3789c3041b /winerrors.md | |
| parent | d1768f27873fe277cfe2513203424afdd2a84d5d (diff) | |
More error handling reduction.
Diffstat (limited to 'winerrors.md')
| -rw-r--r-- | winerrors.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winerrors.md b/winerrors.md index da7ac33..542b527 100644 --- a/winerrors.md +++ b/winerrors.md @@ -2,3 +2,6 @@ - BM_GETCHECK (sysData.isChecked()) - WM_GETTEXTLENGTH (LRESULT is unsinged so) (sysData.text()) - WM_GETTEXT (WM_GETTEXTLENGTH docs say its result may be larger than the actual length, so we can't use that) (sysData.text()) +- CB_GETCURSEL/LB_GETCURSEL (sysData.selectedIndex()) +- LB_GETSELCOUNT/LB_GETSELITEMS (LB_ERR is returned if this is a single-selection listbox; are there actual errors?) (sysData.selectedIndices()) +- LB_GETTEXTLEN/LB_GETTEXT (LB_ERR is returned if the given index is invalid, but since we get indices from LB_GETSELITEMS this shouldn't happen; are there actual errors?) (sysData.selectedTexts()) |
