diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-07 16:02:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-08 16:14:44 +0100 |
commit | 5cc4b1ddd64eea6458390c500fe0ad8f0f224843 (patch) | |
tree | a516c97c08e030ffda174cc7911cb2c0105920ac /sc | |
parent | 07d7a03b950fa20f4f0609d750292fb7f1ecfb3e (diff) |
catched->caught
Change-Id: If655720c1d1d2e8685315261b4524b876adfc053
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlwrap.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx index ee158d57b5e5..fb597e38ad6f 100644 --- a/sc/source/filter/xml/xmlwrap.cxx +++ b/sc/source/filter/xml/xmlwrap.cxx @@ -210,7 +210,7 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(const uno::Reference<uno::XCo { #if OSL_DEBUG_LEVEL > 0 - OStringBuffer aError("SAX parse exception catched while importing:\n"); + OStringBuffer aError("SAX parse exception caught while importing:\n"); aError.append(OUStringToOString(r.Message, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL(aError.getStr()); #endif @@ -246,7 +246,7 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(const uno::Reference<uno::XCo { #if OSL_DEBUG_LEVEL > 0 - OStringBuffer aError("SAX exception catched while importing:\n"); + OStringBuffer aError("SAX exception caught while importing:\n"); aError.append(OUStringToOString(r.Message, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL(aError.getStr()); @@ -259,7 +259,7 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(const uno::Reference<uno::XCo catch( const packages::zip::ZipIOException& r ) { #if OSL_DEBUG_LEVEL > 0 - OStringBuffer aError("Zip exception catched while importing:\n"); + OStringBuffer aError("Zip exception caught while importing:\n"); aError.append(OUStringToOString(r.Message, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL( aError.getStr() ); @@ -271,7 +271,7 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(const uno::Reference<uno::XCo catch( const io::IOException& r ) { #if OSL_DEBUG_LEVEL > 0 - OStringBuffer aError("IO exception catched while importing:\n"); + OStringBuffer aError("IO exception caught while importing:\n"); aError.append(OUStringToOString(r.Message, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL(aError.getStr()); @@ -283,7 +283,7 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(const uno::Reference<uno::XCo catch( const uno::Exception& r ) { #if OSL_DEBUG_LEVEL > 0 - OStringBuffer aError("uno exception catched while importing:\n"); + OStringBuffer aError("uno exception caught while importing:\n"); aError.append(OUStringToOString(r.Message, RTL_TEXTENCODING_ASCII_US)); OSL_FAIL(aError.getStr()); |