diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-02 10:57:13 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-12 11:56:37 +0200 |
commit | 75803cd206e8f119cab71c20c68483744f1ffa5b (patch) | |
tree | e030e04a5c887ea141652e4eb8b6bcd11d0dd88e | |
parent | d3ebe15c1e37c2e491c07caa7128abff30f29e40 (diff) |
Convert vcl::ListBox::GetEntryPos from XubString to OUString
Also make it non-virtual, since no-one was overriding it.
Change-Id: I1ce822065f03c45fc6be036805bdfa741a63f0a8
-rw-r--r-- | include/vcl/lstbox.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index 132c1324b2bb..e032abc551bc 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -136,7 +136,7 @@ public: virtual sal_uInt16 GetSelectEntryPos( sal_uInt16 nSelIndex = 0 ) const; virtual bool IsEntrySelected(const OUString& rStr) const; - virtual sal_Bool IsEntryPosSelected( sal_uInt16 nPos ) const; + virtual sal_Bool IsEntryPosSelected( sal_uInt16 nPos ) const; virtual void SetNoSelection(); void SetEntryData( sal_uInt16 nPos, void* pNewData ); @@ -250,6 +250,7 @@ private: public: explicit MultiListBox( Window* pParent, WinBits nStyle = 0 ); explicit MultiListBox( Window* pParent, const ResId& rResId ); + }; #endif // _SV_LSTBOX_HXX |