summaryrefslogtreecommitdiffstats
path: root/ucb/source/ucp/file/filinsreq.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filinsreq.cxx')
-rw-r--r--ucb/source/ucp/file/filinsreq.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filinsreq.cxx b/ucb/source/ucp/file/filinsreq.cxx
index c9629d45ab01..49a7dac823d7 100644
--- a/ucb/source/ucp/file/filinsreq.cxx
+++ b/ucb/source/ucp/file/filinsreq.cxx
@@ -186,7 +186,7 @@ XInteractionRequestImpl::getRequest()
excep.Name = m_aClashingName;
excep.Classification = InteractionClassification_ERROR;
excep.Context = m_xOrigin;
- excep.Message = OUString( "folder exists and overwritte forbidden");
+ excep.Message = "folder exists and overwritte forbidden";
aAny <<= excep;
}
else if(m_nErrorCode == TASKHANDLING_INVALID_NAME_MKDIR)
@@ -194,7 +194,7 @@ XInteractionRequestImpl::getRequest()
InteractiveAugmentedIOException excep;
excep.Code = IOErrorCode_INVALID_CHARACTER;
PropertyValue prop;
- prop.Name = OUString("ResourceName");
+ prop.Name = "ResourceName";
prop.Handle = -1;
prop.Value <<= m_aClashingName;
Sequence<Any> seq(1);
@@ -202,7 +202,7 @@ XInteractionRequestImpl::getRequest()
excep.Arguments = seq;
excep.Classification = InteractionClassification_ERROR;
excep.Context = m_xOrigin;
- excep.Message = OUString( "the name contained invalid characters");
+ excep.Message = "the name contained invalid characters";
aAny <<= excep;
}