summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadu Ioan <ioan.radu.g@gmail.com>2012-12-30 02:47:09 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-12-30 01:11:49 +0000
commitc5132e30fb09477aa46d810dd86727b3aa8cf20e (patch)
treee6c50f4fa51947aa953db8137c42fa209994f779
parent26a0979711f89915508359a9804765d934631ec2 (diff)
fdo#39440 - cppcheck cleanliness
Correct some strings Change-Id: Ic019cb11b87cd51e7ffd1fb8f16b79dff381936c Reviewed-on: https://gerrit.libreoffice.org/1508 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-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)");
}
//============================================================================