From df9ecb71c7b2622a082849b556dba5008d271b6a Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Fri, 1 Jun 2012 09:39:35 -0500 Subject: targeted string re-work Change-Id: I44518bb1b464bb0b458c0b5f1c249ef160ea3b26 --- pyuno/source/module/pyuno_runtime.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyuno') 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()); -- cgit