diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-25 11:26:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-25 12:04:26 +0100 |
commit | c7bac4da02d51f8180aaad5b3768f4ff5bd80d4d (patch) | |
tree | 32ec907be54a638847a6ff3f27b30b1178ad8e10 /svtools/source | |
parent | c627560d7a2e5f5c9b8ec8ea7d82291da67a7a31 (diff) |
XubString->OUString
Change-Id: I5835696a3246b4d8f401a1617d2b53ec8c7c5626
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/contnr/svtabbx.cxx | 6 | ||||
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx index d9f0c55d18af..ab3bf5cb101d 100644 --- a/svtools/source/contnr/svtabbx.cxx +++ b/svtools/source/contnr/svtabbx.cxx @@ -79,10 +79,10 @@ void SvTabListBox::SetTabs() } } -void SvTabListBox::InitEntry( SvTreeListEntry* pEntry, const XubString& rStr, - const Image& rColl, const Image& rExp, SvLBoxButtonKind eButtonKind ) +void SvTabListBox::InitEntry(SvTreeListEntry* pEntry, const OUString& rStr, + const Image& rColl, const Image& rExp, SvLBoxButtonKind eButtonKind) { - SvTreeListBox::InitEntry( pEntry, rStr, rColl, rExp, eButtonKind ); + SvTreeListBox::InitEntry(pEntry, rStr, rColl, rExp, eButtonKind); XubString aToken; const sal_Unicode* pCurToken = aCurEntry.GetBuffer(); diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index 2806d30f55f4..9b773e52536b 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -1750,9 +1750,9 @@ void SvTreeListBox::SetTabs() pImp->NotifyTabsChanged(); } -void SvTreeListBox::InitEntry( SvTreeListEntry* pEntry, - const XubString& aStr, const Image& aCollEntryBmp, const Image& aExpEntryBmp, - SvLBoxButtonKind eButtonKind) +void SvTreeListBox::InitEntry(SvTreeListEntry* pEntry, + const OUString& aStr, const Image& aCollEntryBmp, const Image& aExpEntryBmp, + SvLBoxButtonKind eButtonKind) { DBG_CHKTHIS(SvTreeListBox,0); SvLBoxButton* pButton; |