diff options
author | ts <ts@openoffice.org> | 2000-12-13 11:29:36 +0000 |
---|---|---|
committer | ts <ts@openoffice.org> | 2000-12-13 11:29:36 +0000 |
commit | aad80bcc2e72dbdb9e7b04a3d552923360924634 (patch) | |
tree | f5d779679eaaf3421f3491b36a5098f8990965fc /codemaker/source | |
parent | 7c877f7ee2f66fc6a10d3fa4241d48140e1f3274 (diff) |
using osl::MutextGuard instead of vos::OGuard
Diffstat (limited to 'codemaker/source')
-rw-r--r-- | codemaker/source/bonobowrappermaker/corbatype.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/source/bonobowrappermaker/corbatype.cxx b/codemaker/source/bonobowrappermaker/corbatype.cxx index f51b3000cb14..749f3b2b6a25 100644 --- a/codemaker/source/bonobowrappermaker/corbatype.cxx +++ b/codemaker/source/bonobowrappermaker/corbatype.cxx @@ -2,9 +2,9 @@ * * $RCSfile: corbatype.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: ts $ $Date: 2000-12-11 14:20:04 $ + * last change: $Author: ts $ $Date: 2000-12-13 12:29:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1504,7 +1504,7 @@ void InterfaceType::dumpUnoMethods(FileStream& o, sal_Bool bDeclOnly, sal_Bool b postBuffer.append(" return _u_ret;\n"); } - o << " ::vos::OGuard guard(m_bridge->getORBLock());\n" + o << " ::osl::MutexGuard guard(m_bridge->getORBLock());\n" << " CORBA_Environment _ev;\n" << " CORBA_exception_init (&_ev);\n"; |