summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-14 17:09:01 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-25 10:54:53 +0200
commitb9a8ac48d7a57f5dcb8dfa9c0400fb9e977c4bf8 (patch)
tree98cabff542158e60984653acbb7514b68f466799 /include
parent83de03e077d219c881626de43960ae4756284371 (diff)
Rename GetSelectEntryData -> GetSelectedEntryData
Change-Id: Ia6402f6d2c978cbd5557052a43e9728ca9e11173 Reviewed-on: https://gerrit.libreoffice.org/42285 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'include')
-rw-r--r--include/svx/checklbx.hxx2
-rw-r--r--include/vcl/lstbox.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/checklbx.hxx b/include/svx/checklbx.hxx
index a99058fd3e99..e96d45d057a0 100644
--- a/include/svx/checklbx.hxx
+++ b/include/svx/checklbx.hxx
@@ -65,7 +65,7 @@ public:
void SelectEntryPos ( sal_uLong nPos );
sal_uLong GetSelectedEntryPos () const;
- void* GetSelectEntryData () const { return GetEntryData(GetSelectedEntryPos()); }
+ void* GetSelectedEntryData () const { return GetEntryData(GetSelectedEntryPos()); }
OUString GetText ( sal_uLong nPos ) const;
sal_uLong GetCheckedEntryCount() const;
diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx
index 8beb78c643ef..9509ac0d25ae 100644
--- a/include/vcl/lstbox.hxx
+++ b/include/vcl/lstbox.hxx
@@ -174,7 +174,7 @@ public:
void SetEntryData( sal_Int32 nPos, void* pNewData );
void* GetEntryData( sal_Int32 nPos ) const;
- void* GetSelectEntryData() const { return GetEntryData(GetSelectedEntryPos()); }
+ void* GetSelectedEntryData() const { return GetEntryData(GetSelectedEntryPos()); }
/** this methods stores a combination of flags from the
ListBoxEntryFlags::* defines at the given entry.