Author: mseidel
Date: Thu Jun 28 11:58:01 2018
New Revision: 1834598

URL: http://svn.apache.org/viewvc?rev=1834598&view=rev
Log:
Fixed typo (cought -> caught)

Modified:
    openoffice/trunk/main/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
    openoffice/trunk/main/sd/source/core/CustomAnimationEffect.cxx
    openoffice/trunk/main/sd/source/core/TransitionPreset.cxx
    openoffice/trunk/main/sd/source/filter/eppt/pptexanimations.cxx
    openoffice/trunk/main/sd/source/ui/animations/CustomAnimationPane.cxx
    openoffice/trunk/main/xmloff/source/draw/animationexport.cxx
    openoffice/trunk/main/xmloff/source/draw/sdxmlexp.cxx
    openoffice/trunk/main/xmloff/source/draw/ximppage.cxx
    openoffice/trunk/main/xmloff/source/table/XMLTableExport.cxx

Modified: 
openoffice/trunk/main/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/ifc/container/_XIndexAccess.java?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/ifc/container/_XIndexAccess.java 
(original)
+++ openoffice/trunk/main/qadevOOo/tests/java/ifc/container/_XIndexAccess.java 
Thu Jun 28 11:58:01 2018
@@ -111,7 +111,7 @@ public class _XIndexAccess extends Multi
                 log.println("no exception thrown - FAILED");
                 result = false;
             } catch (IndexOutOfBoundsException e) {
-                    log.println("Expected exception cought! " + e + " OK");
+                    log.println("Expected exception caught! " + e + " OK");
             } catch (WrappedTargetException e) {
                     log.println("Wrong exception! " + e + " FAILED");
                     result = false;

Modified: openoffice/trunk/main/sd/source/core/CustomAnimationEffect.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/core/CustomAnimationEffect.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/sd/source/core/CustomAnimationEffect.cxx (original)
+++ openoffice/trunk/main/sd/source/core/CustomAnimationEffect.cxx Thu Jun 28 
11:58:01 2018
@@ -378,7 +378,7 @@ sal_Int32 CustomAnimationEffect::getNumb
        {
                (void)e;
                nSubItems = 0;
-               DBG_ERROR( "sd::CustomAnimationEffect::getNumberOfSubitems(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::getNumberOfSubitems(), 
exception caught!" );
        }
 
        return nSubItems;
@@ -706,7 +706,7 @@ void CustomAnimationEffect::setTarget( c
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setTarget(), exception 
cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setTarget(), exception 
caught!" );
        }
 }
 
@@ -743,7 +743,7 @@ void CustomAnimationEffect::setTargetSub
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setTargetSubItem(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setTargetSubItem(), 
exception caught!" );
        }
 }
 
@@ -793,7 +793,7 @@ void CustomAnimationEffect::setDuration(
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setDuration(), exception 
cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setDuration(), exception 
caught!" );
        }
 }
 
@@ -808,7 +808,7 @@ void CustomAnimationEffect::setBegin( do
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setBegin(), exception 
cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setBegin(), exception 
caught!" );
        }
 }
 
@@ -823,7 +823,7 @@ void CustomAnimationEffect::setAccelerat
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setAcceleration(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setAcceleration(), 
exception caught!" );
        }
 }
 // --------------------------------------------------------------------
@@ -837,7 +837,7 @@ void CustomAnimationEffect::setDecelerat
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setDecelerate(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setDecelerate(), 
exception caught!" );
        }
 }
 
@@ -852,7 +852,7 @@ void CustomAnimationEffect::setAutoRever
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::CustomAnimationEffect::setAutoReverse(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setAutoReverse(), 
exception caught!" );
        }
 }
 
@@ -1114,7 +1114,7 @@ void CustomAnimationEffect::setIterateTy
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::CustomAnimationEffect::setIterateType(), 
Exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationEffect::setIterateType(), 
Exception caught!" );
        }
 }
 
@@ -1160,7 +1160,7 @@ void CustomAnimationEffect::setIterateIn
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::getPath(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::getPath(), exception 
caught!" );
        }
 
        return aPath;
@@ -1189,7 +1189,7 @@ void CustomAnimationEffect::setPath( con
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::setPath(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::setPath(), exception 
caught!" );
        }
 }
 
@@ -1239,7 +1239,7 @@ Any CustomAnimationEffect::getProperty(
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::getProperty(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::getProperty(), exception 
caught!" );
        }
 
        return aProperty;
@@ -1317,7 +1317,7 @@ bool CustomAnimationEffect::setProperty(
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::setProperty(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::setProperty(), exception 
caught!" );
        }
 
        return bChanged;
@@ -1376,7 +1376,7 @@ Any CustomAnimationEffect::getColor( sal
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::getColor(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::getColor(), exception 
caught!" );
        }
 
        return aColor;
@@ -1432,7 +1432,7 @@ void CustomAnimationEffect::setColor( sa
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::setColor(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::setColor(), exception 
caught!" );
        }
 }
 
@@ -1479,7 +1479,7 @@ Any CustomAnimationEffect::getTransforma
        catch( Exception& e )
        {
                (void)e;
-               
DBG_ERROR("sd::CustomAnimationEffect::getTransformationProperty(), exception 
cought!" );
+               
DBG_ERROR("sd::CustomAnimationEffect::getTransformationProperty(), exception 
caught!" );
        }
 
        return aProperty;
@@ -1553,7 +1553,7 @@ bool CustomAnimationEffect::setTransform
        catch( Exception& e )
        {
                (void)e;
-               
DBG_ERROR("sd::CustomAnimationEffect::setTransformationProperty(), exception 
cought!" );
+               
DBG_ERROR("sd::CustomAnimationEffect::setTransformationProperty(), exception 
caught!" );
        }
 
        return bChanged;
@@ -1576,7 +1576,7 @@ void CustomAnimationEffect::createAudio(
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::CustomAnimationEffect::createAudio(), exception 
cought!" );
+               DBG_ERROR("sd::CustomAnimationEffect::createAudio(), exception 
caught!" );
        }
 }
 
@@ -1936,7 +1936,7 @@ CustomAnimationEffectPtr EffectSequenceH
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::EffectSequenceHelper::append(), exception 
cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::append(), exception 
caught!" );
        }
 
        return pEffect;
@@ -1961,7 +1961,7 @@ void EffectSequenceHelper::replace( cons
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::EffectSequenceHelper::replace(), exception 
cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::replace(), exception 
caught!" );
        }
 }
 
@@ -2118,7 +2118,7 @@ void EffectSequenceHelper::implRebuild()
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::EffectSequenceHelper::rebuild(), exception 
cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::rebuild(), exception 
caught!" );
        }
 }
 
@@ -2288,7 +2288,7 @@ void stl_process_after_effect_node_func(
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( 
"ppt::stl_process_after_effect_node_func::operator(), exception cought!" );
+               DBG_ERROR( 
"ppt::stl_process_after_effect_node_func::operator(), exception caught!" );
        }
 }
 
@@ -2740,7 +2740,7 @@ void EffectSequenceHelper::createTextGro
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR("sd::EffectSequenceHelper::createTextGroup(), 
exception cought!" );
+               DBG_ERROR("sd::EffectSequenceHelper::createTextGroup(), 
exception caught!" );
        }
 }
 
@@ -3065,7 +3065,7 @@ void EffectSequenceHelper::create( const
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::EffectSequenceHelper::create(), exception 
cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::create(), exception 
caught!" );
        }
 }
 
@@ -3088,7 +3088,7 @@ void EffectSequenceHelper::createEffects
        }
        catch( Exception& )
        {
-               DBG_ERROR( "sd::EffectSequenceHelper::createEffectsequence(), 
exception cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::createEffectsequence(), 
exception caught!" );
        }
 }
 
@@ -3135,7 +3135,7 @@ void EffectSequenceHelper::createEffects
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::EffectSequenceHelper::createEffects(), 
exception cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::createEffects(), 
exception caught!" );
        }
 }
 
@@ -3197,7 +3197,7 @@ void EffectSequenceHelper::processAfterE
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::EffectSequenceHelper::processAfterEffect(), 
exception cought!" );
+               DBG_ERROR( "sd::EffectSequenceHelper::processAfterEffect(), 
exception caught!" );
        }       
 }
 
@@ -3398,7 +3398,7 @@ void MainSequence::createMainSequence()
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::MainSequence::create(), exception cought!" );
+               DBG_ERROR( "sd::MainSequence::create(), exception caught!" );
                return;
        }
 
@@ -3800,7 +3800,7 @@ InteractiveSequence::InteractiveSequence
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::InteractiveSequence::InteractiveSequence(), 
exception cought!" );
+               DBG_ERROR( "sd::InteractiveSequence::InteractiveSequence(), 
exception caught!" );
                return;
        }
 }

Modified: openoffice/trunk/main/sd/source/core/TransitionPreset.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/core/TransitionPreset.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/sd/source/core/TransitionPreset.cxx (original)
+++ openoffice/trunk/main/sd/source/core/TransitionPreset.cxx Thu Jun 28 
11:58:01 2018
@@ -217,7 +217,7 @@ bool TransitionPreset::importTransitionP
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::TransitionPreset::importResources(), Exception 
cought!" );
+               DBG_ERROR( "sd::TransitionPreset::importResources(), Exception 
caught!" );
        }
 
        return bRet;

Modified: openoffice/trunk/main/sd/source/filter/eppt/pptexanimations.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/filter/eppt/pptexanimations.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/sd/source/filter/eppt/pptexanimations.cxx (original)
+++ openoffice/trunk/main/sd/source/filter/eppt/pptexanimations.cxx Thu Jun 28 
11:58:01 2018
@@ -426,7 +426,7 @@ void AnimationExporter::processAfterEffe
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "(@CL)AnimationExporter::processAfterEffectNodes(), 
exception cought!" );
+               DBG_ERROR( "(@CL)AnimationExporter::processAfterEffectNodes(), 
exception caught!" );
        }
 }
 

Modified: openoffice/trunk/main/sd/source/ui/animations/CustomAnimationPane.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/ui/animations/CustomAnimationPane.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/sd/source/ui/animations/CustomAnimationPane.cxx 
(original)
+++ openoffice/trunk/main/sd/source/ui/animations/CustomAnimationPane.cxx Thu 
Jun 28 11:58:01 2018
@@ -236,7 +236,7 @@ CustomAnimationPane::CustomAnimationPane
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::CustomAnimationPane::CustomAnimationPane(), 
Exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationPane::CustomAnimationPane(), 
Exception caught!" );
        }
 
        // get current page and update custom animation list
@@ -1942,7 +1942,7 @@ bool getTextSelection( const Any& rSelec
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "sd::CustomAnimationPane::getTextSelection(), 
exception cought!" );
+               DBG_ERROR( "sd::CustomAnimationPane::getTextSelection(), 
exception caught!" );
        }
 
        return false;

Modified: openoffice/trunk/main/xmloff/source/draw/animationexport.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmloff/source/draw/animationexport.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/xmloff/source/draw/animationexport.cxx (original)
+++ openoffice/trunk/main/xmloff/source/draw/animationexport.cxx Thu Jun 28 
11:58:01 2018
@@ -1342,7 +1342,7 @@ void AnimationsExporterImpl::exportAnima
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "xmloff::AnimationsExporterImpl::exportAnimate(), 
Exception cought!" );
+               DBG_ERROR( "xmloff::AnimationsExporterImpl::exportAnimate(), 
Exception caught!" );
        }
 }
 

Modified: openoffice/trunk/main/xmloff/source/draw/sdxmlexp.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmloff/source/draw/sdxmlexp.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/xmloff/source/draw/sdxmlexp.cxx (original)
+++ openoffice/trunk/main/xmloff/source/draw/sdxmlexp.cxx Thu Jun 28 11:58:01 
2018
@@ -1657,7 +1657,7 @@ HeaderFooterPageSettingsImpl SdXMLExport
        catch( Exception& e )
        {
                (void)e;
-               DBG_ERROR( "SdXMLExport::ImpPrepDrawPageHeaderFooterDecls(), 
unexpected exception cought!" );
+               DBG_ERROR( "SdXMLExport::ImpPrepDrawPageHeaderFooterDecls(), 
unexpected exception caught!" );
        }
 
        return aSettings;

Modified: openoffice/trunk/main/xmloff/source/draw/ximppage.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmloff/source/draw/ximppage.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/xmloff/source/draw/ximppage.cxx (original)
+++ openoffice/trunk/main/xmloff/source/draw/ximppage.cxx Thu Jun 28 11:58:01 
2018
@@ -356,7 +356,7 @@ void SdXMLGenericPageContext::EndElement
                catch( uno::Exception& e )
                {
                        (void)e;
-                       
DBG_ERROR("xmloff::SdXMLGenericPageContext::EndElement(), unexpected exception 
cought!");
+                       
DBG_ERROR("xmloff::SdXMLGenericPageContext::EndElement(), unexpected exception 
caught!");
                }
        }
 
@@ -638,6 +638,6 @@ void SdXMLGenericPageContext::SetNavigat
        }
        catch( uno::Exception& )
        {
-               
DBG_ERROR("xmloff::SdXMLGenericPageContext::SetNavigationOrder(), unexpected 
exception cought while importing shape navigation order!");
+               
DBG_ERROR("xmloff::SdXMLGenericPageContext::SetNavigationOrder(), unexpected 
exception caught while importing shape navigation order!");
        }
 }

Modified: openoffice/trunk/main/xmloff/source/table/XMLTableExport.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmloff/source/table/XMLTableExport.cxx?rev=1834598&r1=1834597&r2=1834598&view=diff
==============================================================================
--- openoffice/trunk/main/xmloff/source/table/XMLTableExport.cxx (original)
+++ openoffice/trunk/main/xmloff/source/table/XMLTableExport.cxx Thu Jun 28 
11:58:01 2018
@@ -382,7 +382,7 @@ static bool has_states( const std::vecto
        }
        catch( Exception )
        {
-               DBG_ERROR( "XMLTableExport::exportTable(), exception cought!" );
+               DBG_ERROR( "XMLTableExport::exportTable(), exception caught!" );
        }               
  }
  


Reply via email to