diff options
author | Jesse <jspears@umd.edu> | 2011-12-14 14:43:58 -0500 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-15 16:38:50 +0000 |
commit | 6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch) | |
tree | d59cda7401565170e32c7d06af9755f3110651fd /xmloff/source/core | |
parent | 63a817d2fb00f248053566c8b8364667432fa8b3 (diff) |
Removed extra semicolons
Diffstat (limited to 'xmloff/source/core')
-rw-r--r-- | xmloff/source/core/nmspmap.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/core/nmspmap.cxx b/xmloff/source/core/nmspmap.cxx index b6b2054518e9..24605cedb849 100644 --- a/xmloff/source/core/nmspmap.cxx +++ b/xmloff/source/core/nmspmap.cxx @@ -228,7 +228,7 @@ OUString SvXMLNamespaceMap::GetQNameByKey( sal_uInt16 nKey, sQName.append ( sal_Unicode(':') ); sQName.append ( rLocalName ); } - return sQName.makeStringAndClear();; + return sQName.makeStringAndClear(); } case XML_NAMESPACE_XML: { @@ -237,7 +237,7 @@ OUString SvXMLNamespaceMap::GetQNameByKey( sal_uInt16 nKey, sQName.append ( GetXMLToken(XML_XML) ); sQName.append ( sal_Unicode(':') ); sQName.append ( rLocalName ); - return sQName.makeStringAndClear();; + return sQName.makeStringAndClear(); } default: { diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index a074d03607e1..8576daed90ed 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2437,7 +2437,7 @@ void SvXMLExport::DisposingModel() { mxModel.clear(); // Shapes in Writer cannot be named via context menu (#i51726#) - meModelType = SvtModuleOptions::E_UNKNOWN_FACTORY;; + meModelType = SvtModuleOptions::E_UNKNOWN_FACTORY; mxEventListener.clear(); } |