summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/viewutil.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/viewutil.cxx')
-rw-r--r--sc/source/ui/view/viewutil.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/view/viewutil.cxx b/sc/source/ui/view/viewutil.cxx
index d055ced4b64b..4fb088c1fb13 100644
--- a/sc/source/ui/view/viewutil.cxx
+++ b/sc/source/ui/view/viewutil.cxx
@@ -161,13 +161,13 @@ sal_Bool ScViewUtil::IsActionShown( const ScChangeAction& rAction,
if ( rSettings.HasComment() )
{
- rtl::OUStringBuffer aBuf(rAction.GetComment());
+ OUStringBuffer aBuf(rAction.GetComment());
aBuf.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ("));
- rtl::OUString aTmp;
+ OUString aTmp;
rAction.GetDescription(aTmp, &rDocument);
aBuf.append(aTmp);
aBuf.append(sal_Unicode(')'));
- rtl::OUString aComStr = aBuf.makeStringAndClear();
+ OUString aComStr = aBuf.makeStringAndClear();
if(!rSettings.IsValidComment(&aComStr))
return false;