diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/colorbox.hxx | 2 | ||||
-rw-r--r-- | include/vcl/combobox.hxx | 2 | ||||
-rw-r--r-- | include/vcl/lstbox.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/colorbox.hxx b/include/svx/colorbox.hxx index e2cb74962aad..be6165cdc5aa 100644 --- a/include/svx/colorbox.hxx +++ b/include/svx/colorbox.hxx @@ -60,7 +60,7 @@ public: void SetSlotId(sal_uInt16 nSlotId, bool bShowNoneButton = false); Color GetSelectEntryColor() const { return m_aSelectedColor.first; } - NamedColor GetSelectEntry() const { return m_aSelectedColor; } + NamedColor GetSelectedEntry() const { return m_aSelectedColor; } void SelectEntry(const NamedColor& rColor); void SelectEntry(const Color& rColor); diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx index fd9306d2e8c4..5b5a03840a37 100644 --- a/include/vcl/combobox.hxx +++ b/include/vcl/combobox.hxx @@ -143,7 +143,7 @@ public: sal_Int32 GetSelectEntryCount() const; sal_Int32 GetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const; - OUString GetSelectEntry() const { return GetEntry( GetSelectEntryPos() ); } + OUString GetSelectedEntry() const { return GetEntry( GetSelectEntryPos() ); } bool IsEntryPosSelected( sal_Int32 nPos ) const; void SelectEntryPos( sal_Int32 nPos, bool bSelect = true ); void SetNoSelection(); diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index bfdb013038b1..7c5206b68ffa 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -165,7 +165,7 @@ public: void SelectEntryPos( sal_Int32 nPos, bool bSelect = true ); sal_Int32 GetSelectEntryCount() const; - OUString GetSelectEntry( sal_Int32 nSelIndex = 0 ) const; + OUString GetSelectedEntry( sal_Int32 nSelIndex = 0 ) const; sal_Int32 GetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const; bool IsEntrySelected(const OUString& rStr) const; |