diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-15 17:28:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-18 09:59:19 +0200 |
commit | c60452f1b425adfd42f03d7640a073c039c2e054 (patch) | |
tree | 8d12a5c1ce76b96f2e229299f23b907aeffc8270 | |
parent | e39d9876166317b95a0b1f4b5abf032932085a12 (diff) |
convert sw/source/core/txtnode/*.cxx from String to OUString
Change-Id: I959196c06025e35211ee23bac574ba63a83938b1
-rw-r--r-- | sw/source/core/txtnode/fmtatr2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/txtnode/fmtatr2.cxx b/sw/source/core/txtnode/fmtatr2.cxx index 841ac42e561e..3443c01b1388 100644 --- a/sw/source/core/txtnode/fmtatr2.cxx +++ b/sw/source/core/txtnode/fmtatr2.cxx @@ -160,7 +160,7 @@ SfxPoolItem* SwFmtAutoFmt::Clone( SfxItemPool* ) const bool SwFmtAutoFmt::QueryValue( uno::Any& rVal, sal_uInt8 ) const { - String sCharFmtName = StylePool::nameOf( mpHandle ); + OUString sCharFmtName = StylePool::nameOf( mpHandle ); rVal <<= OUString( sCharFmtName ); return true; } |