summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-06-01 09:39:35 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-06-01 09:41:50 -0500
commitdf9ecb71c7b2622a082849b556dba5008d271b6a (patch)
tree3b111d581fdddc854ffb8b28fd86b7561ca16be2 /pyuno
parenta30795ce516b273a3a56a136b9b8802a23dd632a (diff)
targeted string re-work
Change-Id: I44518bb1b464bb0b458c0b5f1c249ef160ea3b26
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx
index 03f1c28de3f1..56ee7fa5e427 100644
--- a/pyuno/source/module/pyuno_runtime.cxx
+++ b/pyuno/source/module/pyuno_runtime.cxx
@@ -133,7 +133,7 @@ static void getRuntimeImpl( PyRef & globalDict, PyRef &runtimeImpl )
PyThreadState * state = PyThreadState_Get();
if( ! state )
{
- throw RuntimeException( OUString( "python global interpreter must be held (thread must be attached" )),
+ throw RuntimeException( OUString( "python global interpreter must be held (thread must be attached)" ),
Reference< XInterface > () );
}
@@ -361,7 +361,7 @@ Runtime::Runtime() throw( RuntimeException )
{
throw RuntimeException(
OUString( "pyuno runtime is not initialized, "
- "(the pyuno.bootstrap needs to be called before using any uno classes")),
+ "(the pyuno.bootstrap needs to be called before using any uno classes)"),
Reference< XInterface > () );
}
impl = reinterpret_cast< RuntimeImpl * > (runtime.get());