diff options
author | Alexander Bergmann <myaddons@gmx.de> | 2012-01-26 16:00:09 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-26 17:41:07 +0000 |
commit | 0439af27e1f37b19d4409f34f974d6ade49f99bf (patch) | |
tree | 13bbb2549319d74a1a109bf2727aab37dca5b8c7 /codemaker | |
parent | f1cb0a4ab4f11dc015be1696c7c7751802171915 (diff) |
Code cleanup: ( () ) replaced by (())
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/source/cppumaker/cpputype.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx index ccc7a8135bf1..763441bdd932 100644 --- a/codemaker/source/cppumaker/cpputype.cxx +++ b/codemaker/source/cppumaker/cpputype.cxx @@ -2588,7 +2588,7 @@ sal_Bool StructureType::dumpHxxFile( dumpTemplateHead(o); o << "inline " << m_name; dumpTemplateParameters(o); - o << "::" << m_name << "() SAL_THROW( () )\n"; + o << "::" << m_name << "() SAL_THROW(())\n"; inc(); OString superType; if (m_reader.getSuperTypeCount() >= 1) { @@ -2668,7 +2668,7 @@ sal_Bool StructureType::dumpHxxFile( // o << " __" << fieldName; o << " " << fieldName << "_"; } - o << ") SAL_THROW( () )\n"; + o << ") SAL_THROW(())\n"; inc(); first = sal_True; @@ -3254,7 +3254,7 @@ void ExceptionType::dumpDeclaration(FileStream& o) o << "\n{\npublic:\n"; inc(); o << indent() << "inline CPPU_GCC_DLLPRIVATE " << m_name - << "() SAL_THROW( () );\n\n"; + << "() SAL_THROW(());\n\n"; sal_uInt16 fieldCount = m_reader.getFieldCount(); RTFieldAccess access = RT_ACCESS_INVALID; @@ -3289,7 +3289,7 @@ void ExceptionType::dumpDeclaration(FileStream& o) // o << " __" << fieldName; o << " " << fieldName << "_"; } - o << ") SAL_THROW( () );\n\n"; + o << ") SAL_THROW(());\n\n"; } o << indent() << "inline CPPU_GCC_DLLPRIVATE " << m_name << "(" << m_name << " const &);\n\n" @@ -3341,7 +3341,7 @@ sal_Bool ExceptionType::dumpHxxFile( } o << "\n"; - o << "inline " << m_name << "::" << m_name << "() SAL_THROW( () )\n"; + o << "inline " << m_name << "::" << m_name << "() SAL_THROW(())\n"; inc(); OString superType; if (m_reader.getSuperTypeCount() >= 1) { @@ -3421,7 +3421,7 @@ sal_Bool ExceptionType::dumpHxxFile( // o << " __" << fieldName; o << " " << fieldName << "_"; } - o << ") SAL_THROW( () )\n"; + o << ") SAL_THROW(())\n"; inc(); first = sal_True; @@ -3795,7 +3795,7 @@ sal_Bool TypeDefType::dumpHFile( // o << "\nnamespace com { namespace sun { namespace star { namespace uno {\n" // << "class Type;\n} } } }\n\n"; // o << "inline const ::com::sun::star::uno::Type& SAL_CALL get_" << m_typeName.replace('/', '_') -// << "_Type( ) SAL_THROW( () );\n\n"; +// << "_Type( ) SAL_THROW(());\n\n"; o << "#endif // "<< headerDefine << "\n"; |