Improve wxLIST_STATE_DONTCARE documentation

Don't say that it's MSW-specific because it's just a symbolic name for
0, and is used under all platforms if no other flags are set.
This commit is contained in:
Vadim Zeitlin 2020-01-09 16:28:00 +01:00
parent 9b974b5dd1
commit db5cf010d7

View File

@ -1783,7 +1783,7 @@ public:
This is a bitlist of the following flags:
- @c wxLIST_STATE_FOCUSED: The item has the focus.
- @c wxLIST_STATE_SELECTED: The item is selected.
- @c wxLIST_STATE_DONTCARE: Don't care what the state is. Win32 only.
- @c wxLIST_STATE_DONTCARE: No special flags (the value of this constant is 0).
- @c wxLIST_STATE_DROPHILITED: The item is highlighted to receive a drop event. Win32 only.
- @c wxLIST_STATE_CUT: The item is in the cut state. Win32 only.
- A mask indicating which state flags are valid; this is a bitlist of the
@ -1875,7 +1875,7 @@ public:
Returns a bit field representing the state of the item.
Can be any combination of:
- wxLIST_STATE_DONTCARE: Don't care what the state is. Win32 only.
- wxLIST_STATE_DONTCARE: No special flags (the values of this constant is 0).
- wxLIST_STATE_DROPHILITED: The item is highlighted to receive a drop event. Win32 only.
- wxLIST_STATE_FOCUSED: The item has the focus.
- wxLIST_STATE_SELECTED: The item is selected.