summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/ui/vba/vbahelper.cxx2
-rw-r--r--ucb/workben/ucb/ucbdemo.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbahelper.cxx b/sc/source/ui/vba/vbahelper.cxx
index 96c1aeb44df0..1452d42d177c 100644
--- a/sc/source/ui/vba/vbahelper.cxx
+++ b/sc/source/ui/vba/vbahelper.cxx
@@ -275,7 +275,7 @@ getCurrentDocument() throw (uno::RuntimeException)
if ( !xModel.is() )
{
throw uno::RuntimeException(
- rtl::OUString( "Can't extract model from basic ( its obviously not set yet therefore don't know the currently selected document") ), uno::Reference< uno::XInterface >() );
+ rtl::OUString( "Can't extract model from basic ( its obviously not set yet therefore don't know the currently selected document)" ), uno::Reference< uno::XInterface >() );
}
return xModel;
}
diff --git a/ucb/workben/ucb/ucbdemo.cxx b/ucb/workben/ucb/ucbdemo.cxx
index 667bcd54b74f..f38447ab6f0d 100644
--- a/ucb/workben/ucb/ucbdemo.cxx
+++ b/ucb/workben/ucb/ucbdemo.cxx
@@ -296,7 +296,7 @@ rtl::OUString ProgressHandler::toString(const uno::Any & rStatus)
return rtl::OUString(sResult);
}
- return rtl::OUString("(Unknown object"));
+ return rtl::OUString("(Unknown object)");
}
//============================================================================