diff options
-rw-r--r-- | framework/source/services/frame.cxx | 2 | ||||
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/scdetect.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/unoidl/sddetect.cxx | 4 | ||||
-rw-r--r-- | starmath/source/smdetect.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/uno/swdetect.cxx | 4 |
6 files changed, 10 insertions, 10 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index ad5aeda344bc..ce6f4a42abae 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -2598,7 +2598,7 @@ void SAL_CALL Frame::windowDeactivated( const css::lang::EventObject& aEvent ) t { css::uno::Reference< css::awt::XWindow > xParentWindow = xParent->getContainerWindow() ; Window* pParentWindow = VCLUnoHelper::GetWindow( xParentWindow ); - //#i70261#: dialogs opend from an OLE object will cause a deactivate on the frame of the OLE object + //#i70261#: dialogs opened from an OLE object will cause a deactivate on the frame of the OLE object // on Solaris/Linux at that time pFocusWindow is still NULL because the focus handling is different; right after // the deactivation the focus will be set into the dialog! // currently I see no case where a sub frame could get a deactivate with pFocusWindow being NULL permanently diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java index 6060292b95b3..5bf3f2c7f0ae 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java @@ -988,7 +988,7 @@ public class FunctionHelper * * @param aParent parent window of this dialog * @param bOpen If it is set to true => - * dialog is opend in "file open" mode - + * dialog is opened in "file open" mode - * otherwise in "file save" mode. */ public static String askUserForFileURL(Component aParent,boolean bOpen) diff --git a/sc/source/ui/unoobj/scdetect.cxx b/sc/source/ui/unoobj/scdetect.cxx index 11f84444c661..877925be2052 100644 --- a/sc/source/ui/unoobj/scdetect.cxx +++ b/sc/source/ui/unoobj/scdetect.cxx @@ -557,7 +557,7 @@ OUString SAL_CALL ScFilterDetect::detect( uno::Sequence<beans::PropertyValue>& l if ( nIndexOfInputStream == -1 && xStream.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "InputStream"; lDescriptor[nPropertyCount].Value <<= xStream; @@ -566,7 +566,7 @@ OUString SAL_CALL ScFilterDetect::detect( uno::Sequence<beans::PropertyValue>& l if ( nIndexOfContent == -1 && xContent.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "UCBContent"; lDescriptor[nPropertyCount].Value <<= xContent; diff --git a/sd/source/ui/unoidl/sddetect.cxx b/sd/source/ui/unoidl/sddetect.cxx index b1c12c1c696f..fa3cdaed6e54 100644 --- a/sd/source/ui/unoidl/sddetect.cxx +++ b/sd/source/ui/unoidl/sddetect.cxx @@ -450,7 +450,7 @@ OUString SAL_CALL SdFilterDetect::detect( Sequence< beans::PropertyValue >& lDes if ( nIndexOfInputStream == -1 && xStream.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "InputStream"; lDescriptor[nPropertyCount].Value <<= xStream; @@ -459,7 +459,7 @@ OUString SAL_CALL SdFilterDetect::detect( Sequence< beans::PropertyValue >& lDes if ( nIndexOfContent == -1 && xContent.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "UCBContent"; lDescriptor[nPropertyCount].Value <<= xContent; diff --git a/starmath/source/smdetect.cxx b/starmath/source/smdetect.cxx index c53b53013fe4..14e0a39a595b 100644 --- a/starmath/source/smdetect.cxx +++ b/starmath/source/smdetect.cxx @@ -368,7 +368,7 @@ OUString SAL_CALL SmFilterDetect::detect( Sequence< PropertyValue >& lDescriptor if ( nIndexOfInputStream == -1 && xStream.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "InputStream"; lDescriptor[nPropertyCount].Value <<= xStream; @@ -377,7 +377,7 @@ OUString SAL_CALL SmFilterDetect::detect( Sequence< PropertyValue >& lDescriptor if ( nIndexOfContent == -1 && xContent.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "UCBContent"; lDescriptor[nPropertyCount].Value <<= xContent; diff --git a/sw/source/ui/uno/swdetect.cxx b/sw/source/ui/uno/swdetect.cxx index b448e8656214..69b7d9ee42fb 100644 --- a/sw/source/ui/uno/swdetect.cxx +++ b/sw/source/ui/uno/swdetect.cxx @@ -349,7 +349,7 @@ OUString SAL_CALL SwFilterDetect::detect( Sequence< PropertyValue >& lDescriptor if ( nIndexOfInputStream == -1 && xStream.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "InputStream"; lDescriptor[nPropertyCount].Value <<= xStream; @@ -358,7 +358,7 @@ OUString SAL_CALL SwFilterDetect::detect( Sequence< PropertyValue >& lDescriptor if ( nIndexOfContent == -1 && xContent.is() ) { - // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opend twice + // if input stream wasn't part of the descriptor, now it should be, otherwise the content would be opened twice lDescriptor.realloc( nPropertyCount + 1 ); lDescriptor[nPropertyCount].Name = "UCBContent"; lDescriptor[nPropertyCount].Value <<= xContent; |