diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-08 15:20:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-15 09:11:33 +0200 |
commit | 78b2f4be915b7dd9bfabe34162163b362f0a2141 (patch) | |
tree | 39c54d12102ba23d4b50d8a09431b3d6b47b6af4 /include/svtools | |
parent | 3d87a580a36bc4cdfe2963ca1c021fb8c1db69d6 (diff) |
convert include/svtools/svtabbx.hxx from String to OUString
Change-Id: Ieb882752fd004473ab43ce4e6fbb18a4935845ee
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/svtabbx.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svtools/svtabbx.hxx b/include/svtools/svtabbx.hxx index e3368ed90ea7..86138df498ef 100644 --- a/include/svtools/svtabbx.hxx +++ b/include/svtools/svtabbx.hxx @@ -37,9 +37,9 @@ struct TabListBoxEventData { SvTreeListEntry* m_pEntry; sal_uInt16 m_nColumn; - String m_sOldText; + OUString m_sOldText; - TabListBoxEventData( SvTreeListEntry* pEntry, sal_uInt16 nColumn, const String& rOldText ) : + TabListBoxEventData( SvTreeListEntry* pEntry, sal_uInt16 nColumn, const OUString& rOldText ) : m_pEntry( pEntry ), m_nColumn( nColumn ), m_sOldText( rOldText ) {} }; @@ -58,9 +58,9 @@ protected: virtual void SetTabs(); virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&, SvLBoxButtonKind); - String GetTabEntryText( sal_uLong nPos, sal_uInt16 nCol ) const; - SvTreeListEntry* GetEntryOnPos( sal_uLong _nEntryPos ) const; - SvTreeListEntry* GetChildOnPos( SvTreeListEntry* _pParent, sal_uLong _nEntryPos, sal_uLong& _rPos ) const; + OUString GetTabEntryText( sal_uLong nPos, sal_uInt16 nCol ) const; + SvTreeListEntry* GetEntryOnPos( sal_uLong _nEntryPos ) const; + SvTreeListEntry* GetChildOnPos( SvTreeListEntry* _pParent, sal_uLong _nEntryPos, sal_uLong& _rPos ) const; public: SvTabListBox( Window* pParent, WinBits = WB_BORDER ); |