From db5cf010d71e4c4475e71ea465b4afaeba0e4360 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 9 Jan 2020 16:28:00 +0100 Subject: [PATCH] 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. --- interface/wx/listctrl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/listctrl.h b/interface/wx/listctrl.h index 6f0703c58c..fc7b0a101c 100644 --- a/interface/wx/listctrl.h +++ b/interface/wx/listctrl.h @@ -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.