diff options
author | Juergen Schmidt <jsc@openoffice.org> | 2005-10-21 12:52:35 +0000 |
---|---|---|
committer | Juergen Schmidt <jsc@openoffice.org> | 2005-10-21 12:52:35 +0000 |
commit | b8f16352cf69e95a2bf7cc47bbdebcd4e255cf17 (patch) | |
tree | 813f89fc2bb0df35a10e051fc01e10b764879f6c | |
parent | e0c9d71b22ed056f70dd10f780768368ff1edaec (diff) |
#i52208# adapt BaseMutex member from m_mutex to m_aMutex
-rw-r--r-- | unodevtools/source/skeletonmaker/cppcompskeleton.cxx | 6 | ||||
-rw-r--r-- | unodevtools/source/skeletonmaker/cpptypemaker.cxx | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx index 180ff8fcfad4..372a527b4af2 100644 --- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx @@ -4,9 +4,9 @@ * * $RCSfile: cppcompskeleton.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jsc $ $Date: 2005-09-09 13:50:27 $ + * last change: $Author: jsc $ $Date: 2005-10-21 13:52:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -275,7 +275,7 @@ OString generateClassDefinition(std::ostream& o, if (iter != interfaces.end()) o << ","; else - o << ">(m_mutex),\n"; + o << ">(m_aMutex),\n"; } } if (propertyhelper.getLength() > 0) { diff --git a/unodevtools/source/skeletonmaker/cpptypemaker.cxx b/unodevtools/source/skeletonmaker/cpptypemaker.cxx index 1cb27b2602d5..d43ba1b666a0 100644 --- a/unodevtools/source/skeletonmaker/cpptypemaker.cxx +++ b/unodevtools/source/skeletonmaker/cpptypemaker.cxx @@ -4,9 +4,9 @@ * * $RCSfile: cpptypemaker.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jsc $ $Date: 2005-09-09 13:50:28 $ + * last change: $Author: jsc $ $Date: 2005-10-21 13:52:35 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -329,7 +329,7 @@ void printSetPropertyMixinBody(std::ostream & o, else o << "0);\n"; - o << " {\n osl::MutexGuard g(m_mutex);\n m_" + o << " {\n osl::MutexGuard g(m_aMutex);\n m_" << fieldname << " = the_value;\n }\n"; if (bound) { @@ -405,7 +405,7 @@ void printMethods(std::ostream & o, if (body) { if (defaultbody) { if (usepropertymixin) { - o << "\n{\n osl::MutexGuard g(m_mutex);\n return m_" + o << "\n{\n osl::MutexGuard g(m_aMutex);\n return m_" << codemaker::convertString(reader.getFieldName(i)).getStr() << ";\n}\n\n"; } else { |