diff options
-rw-r--r-- | include/vcl/combobox.hxx | 1 | ||||
-rw-r--r-- | include/vcl/lstbox.hxx | 1 | ||||
-rw-r--r-- | include/vcl/weld.hxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx index 0080e39dfda5..1993d00e0ae6 100644 --- a/include/vcl/combobox.hxx +++ b/include/vcl/combobox.hxx @@ -30,6 +30,7 @@ class UserDrawEvent; +/// A widget used to choose from a list of items and which has an entry. class VCL_DLLPUBLIC ComboBox : public Edit { private: diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index df42d7b6b9d2..4e6130a7dd18 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -74,6 +74,7 @@ class ImplBtn; class ImplWin; class ImplListBoxWindow; +/// A widget used to choose from a list of items and which has no entry. class VCL_DLLPUBLIC ListBox : public Control { private: diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 61deac2be88a..3200164f1da6 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -514,6 +514,7 @@ enum class EntryMessageType Error, }; +/// A widget used to choose from a list of items. class VCL_DLLPUBLIC ComboBox : virtual public Container { private: |