diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:33:25 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:33:25 +0000 |
commit | 6e1b52666412b5587d5c7ea4a112920899e699d5 (patch) | |
tree | fc7f1f0aafed629c4b65635ffa1b83c29516ccb8 | |
parent | a9eed80e3eb66b218c25dad54a73fca4f24f6be4 (diff) |
INTEGRATION: CWS sb59 (1.41.4); FILE MERGED
2006/07/19 11:25:45 sb 1.41.4.1: #i67545# Removed spurious ; from emitted code.
-rw-r--r-- | codemaker/source/cppumaker/cpputype.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx index 4f2318af2f1d..8d088dc77de7 100644 --- a/codemaker/source/cppumaker/cpputype.cxx +++ b/codemaker/source/cppumaker/cpputype.cxx @@ -4,9 +4,9 @@ * * $RCSfile: cpputype.cxx,v $ * - * $Revision: 1.42 $ + * $Revision: 1.43 $ * - * last change: $Author: obo $ $Date: 2006-09-17 03:36:54 $ + * last change: $Author: obo $ $Date: 2006-10-12 11:33:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -184,7 +184,7 @@ void CppuType::dumpGetCppuTypePostamble(FileStream & out) { << indent() << "void operator =(UnoType); // not defined\n};\n\n}\n\n"; } else { - out << "};\n\n"; + out << "}\n\n"; if (codemaker::cppumaker::dumpNamespaceClose(out, m_typeName, false)) { out << "\n\n"; } |