diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-07-11 12:28:48 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-07-11 12:28:48 +0000 |
commit | b6c218dfc1624e544894a0e01d92484312accbd0 (patch) | |
tree | 72313f84978598d4157d218e8f4418e5f0a98749 | |
parent | dfe5e24f404f28d7b185ca150cfadaea32436a1f (diff) |
INTEGRATION: CWS jsc21 (1.7.34); FILE MERGED
2008/04/23 09:48:24 jsc 1.7.34.2: RESYNC: (1.7-1.8); FILE MERGED
2008/02/13 08:54:57 jsc 1.7.34.1: #i72964# remove external header guards
-rw-r--r-- | codemaker/source/cppumaker/includes.cxx | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/codemaker/source/cppumaker/includes.cxx b/codemaker/source/cppumaker/includes.cxx index 1f49bf722805..19fc574fe3b4 100644 --- a/codemaker/source/cppumaker/includes.cxx +++ b/codemaker/source/cppumaker/includes.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: includes.cxx,v $ - * $Revision: 1.8 $ + * $Revision: 1.9 $ * * This file is part of OpenOffice.org. * @@ -198,23 +198,19 @@ void Includes::dump(FileStream & out, rtl::OString const * companionHdl) { static char const * hxxExtension[2] = { "h", "hxx" }; if (m_includeAny) { dumpEmptyLineBeforeFirst(out, &first); - out << "#include \"com/sun/star/uno/Any." << hxxExtension[m_hpp] - << "\"\n"; + out << "#include \"com/sun/star/uno/Any." << hxxExtension[m_hpp] << "\"\n"; } if (m_includeReference) { dumpEmptyLineBeforeFirst(out, &first); - out << "#include \"com/sun/star/uno/Reference." - << hxxExtension[m_hpp] << "\"\n"; + out << "#include \"com/sun/star/uno/Reference." << hxxExtension[m_hpp] << "\"\n"; } if (m_includeSequence) { dumpEmptyLineBeforeFirst(out, &first); - out << "#include \"com/sun/star/uno/Sequence." << hxxExtension[m_hpp] - << "\"\n"; + out << "#include \"com/sun/star/uno/Sequence." << hxxExtension[m_hpp] << "\"\n"; } if (m_includeType) { dumpEmptyLineBeforeFirst(out, &first); - out << "#include \"com/sun/star/uno/Type." << hxxExtension[m_hpp] - << "\"\n"; + out << "#include \"com/sun/star/uno/Type." << hxxExtension[m_hpp] << "\"\n"; } if (m_includeCppuMacrosHxx) { dumpEmptyLineBeforeFirst(out, &first); @@ -275,8 +271,7 @@ void Includes::dumpInclude( rtl::OString const & suffix) { static char const * extension[2] = { "hdl", "hpp" }; - out << "#include \"" - << registryType; + out << "#include \"" << registryType; if (suffix.getLength() > 0) { out << "/" << suffix; } |