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 /cui/source/customize | |
parent | c627560d7a2e5f5c9b8ec8ea7d82291da67a7a31 (diff) |
XubString->OUString
Change-Id: I5835696a3246b4d8f401a1617d2b53ec8c7c5626
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 0d6eb9e4a5ab..a3ac4500cc61 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -663,13 +663,13 @@ void SfxAccCfgLBoxString_Impl::Paint( } //----------------------------------------------- -void SfxAccCfgTabListBox_Impl::InitEntry( SvTreeListEntry* pEntry , - const XubString& sText , - const Image& aImage1, - const Image& aImage2, - SvLBoxButtonKind eButtonKind) +void SfxAccCfgTabListBox_Impl::InitEntry(SvTreeListEntry* pEntry, + const OUString& rText, + const Image& rImage1, + const Image& rImage2, + SvLBoxButtonKind eButtonKind) { - SvTabListBox::InitEntry(pEntry, sText, aImage1, aImage2, eButtonKind); + SvTabListBox::InitEntry(pEntry, rText, rImage1, rImage2, eButtonKind); } //----------------------------------------------- |