diff options
-rw-r--r-- | framework/source/fwe/xml/statusbardocumenthandler.cxx | 2 | ||||
-rw-r--r-- | framework/source/fwe/xml/toolboxdocumenthandler.cxx | 2 | ||||
-rw-r--r-- | framework/source/xml/imagesdocumenthandler.cxx | 16 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterSlideShowView.cxx | 2 | ||||
-rw-r--r-- | sw/qa/extras/htmlimport/htmlimport.cxx | 2 | ||||
-rw-r--r-- | ure/source/README | 2 |
6 files changed, 13 insertions, 13 deletions
diff --git a/framework/source/fwe/xml/statusbardocumenthandler.cxx b/framework/source/fwe/xml/statusbardocumenthandler.cxx index bde842ddd65d..80f5efd5ace6 100644 --- a/framework/source/fwe/xml/statusbardocumenthandler.cxx +++ b/framework/source/fwe/xml/statusbardocumenthandler.cxx @@ -214,7 +214,7 @@ throw( SAXException, RuntimeException, std::exception ) if ( m_bStatusBarStartFound ) { OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'statusbar:statusbar' cannot be embeded into 'statusbar:statusbar'!"; + aErrorMessage += "Element 'statusbar:statusbar' cannot be embedded into 'statusbar:statusbar'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } diff --git a/framework/source/fwe/xml/toolboxdocumenthandler.cxx b/framework/source/fwe/xml/toolboxdocumenthandler.cxx index a8baf528ada2..05771ec80a89 100644 --- a/framework/source/fwe/xml/toolboxdocumenthandler.cxx +++ b/framework/source/fwe/xml/toolboxdocumenthandler.cxx @@ -226,7 +226,7 @@ throw( SAXException, RuntimeException, std::exception ) if ( m_bToolBarStartFound ) { OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'toolbar:toolbar' cannot be embeded into 'toolbar:toolbar'!"; + aErrorMessage += "Element 'toolbar:toolbar' cannot be embedded into 'toolbar:toolbar'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } else diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx index 6ca2a9d4f7ff..0db4d4ebd17c 100644 --- a/framework/source/xml/imagesdocumenthandler.cxx +++ b/framework/source/xml/imagesdocumenthandler.cxx @@ -178,7 +178,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( if ( m_bImageContainerStartFound ) { OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:imagecontainer' cannot be embeded into 'image:imagecontainer'!"; + aErrorMessage += "Element 'image:imagecontainer' cannot be embedded into 'image:imagecontainer'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -191,14 +191,14 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( if ( !m_bImageContainerStartFound ) { OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:images' must be embeded into element 'image:imagecontainer'!"; + aErrorMessage += "Element 'image:images' must be embedded into element 'image:imagecontainer'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } if ( m_bImagesStartFound ) { OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:images' cannot be embeded into 'image:images'!"; + aErrorMessage += "Element 'image:images' cannot be embedded into 'image:images'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -299,7 +299,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( m_pImages = NULL; OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:entry' must be embeded into element 'image:images'!"; + aErrorMessage += "Element 'image:entry' must be embedded into element 'image:images'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -375,7 +375,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( m_pImages = NULL; OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:externalimages' must be embeded into element 'image:imagecontainer'!"; + aErrorMessage += "Element 'image:externalimages' must be embedded into element 'image:imagecontainer'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -386,7 +386,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( m_pImages = NULL; OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:externalimages' cannot be embeded into 'image:externalimages'!"; + aErrorMessage += "Element 'image:externalimages' cannot be embedded into 'image:externalimages'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -406,7 +406,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( m_pExternalImages = NULL; OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:externalentry' must be embeded into 'image:externalimages'!"; + aErrorMessage += "Element 'image:externalentry' must be embedded into 'image:externalimages'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } @@ -418,7 +418,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( m_pExternalImages = NULL; OUString aErrorMessage = getErrorLineString(); - aErrorMessage += "Element 'image:externalentry' cannot be embeded into 'image:externalentry'!"; + aErrorMessage += "Element 'image:externalentry' cannot be embedded into 'image:externalentry'!"; throw SAXException( aErrorMessage, Reference< XInterface >(), Any() ); } diff --git a/sdext/source/presenter/PresenterSlideShowView.cxx b/sdext/source/presenter/PresenterSlideShowView.cxx index 531e2277da3a..b01338d4672b 100644 --- a/sdext/source/presenter/PresenterSlideShowView.cxx +++ b/sdext/source/presenter/PresenterSlideShowView.cxx @@ -1004,7 +1004,7 @@ void PresenterSlideShowView::impl_addAndConfigureView() { Reference<presentation::XSlideShowView> xView (this); mxSlideShow->addView(xView); - // Prevent embeded sounds being played twice at the same time by + // Prevent embedded sounds being played twice at the same time by // disabling sound for the new slide show view. beans::PropertyValue aProperty; aProperty.Name = "IsSoundEnabled"; diff --git a/sw/qa/extras/htmlimport/htmlimport.cxx b/sw/qa/extras/htmlimport/htmlimport.cxx index 5ac63de6c9f1..52a29e2fdb91 100644 --- a/sw/qa/extras/htmlimport/htmlimport.cxx +++ b/sw/qa/extras/htmlimport/htmlimport.cxx @@ -46,7 +46,7 @@ DECLARE_HTMLIMPORT_TEST(testInlinedImage, "inlined_image.html") { SwXTextDocument* pTxtDoc = dynamic_cast<SwXTextDocument *>(mxComponent.get()); CPPUNIT_ASSERT(pTxtDoc); - // The document contains only one embeded picture inlined in img's src attribute. + // The document contains only one embedded picture inlined in img's src attribute. SwDoc* pDoc = pTxtDoc->GetDocShell()->GetDoc(); SwEditShell* pEditShell = pDoc->GetEditShell(); diff --git a/ure/source/README b/ure/source/README index 81bb696a516f..a15dc7dccd10 100644 --- a/ure/source/README +++ b/ure/source/README @@ -242,7 +242,7 @@ Users\Application Data\URE directory. URE_MORE_TYPES and URE_MORE_SERVICES each contain zero or more space-separated URI descriptors. A URI descriptor is either a URI (denoting an individual file) -or a URI embeded in "<" and ">*" (denoting all the files contained non- +or a URI embedded in "<" and ">*" (denoting all the files contained non- recursively within the directory denoted by the given URI). The Java UNO environment needs type information in the form of Java class files |