summaryrefslogtreecommitdiff
path: root/sc
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 /sc
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>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbahelper.cxx2
1 files changed, 1 insertions, 1 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;
}