diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-03-29 18:59:34 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-03-29 19:16:33 +0100 |
commit | 680139fe7d51cf3c3ada1ce12fe507c298f02b67 (patch) | |
tree | a85c66d57bf1de0c22c0911b0fff175ac7de337f /sd/source/ui/unoidl/sddetect.cxx | |
parent | d6837aa330821dd7b10ea14536e4fb1d41aa9a37 (diff) |
typo: opend -> opened
Diffstat (limited to 'sd/source/ui/unoidl/sddetect.cxx')
-rw-r--r-- | sd/source/ui/unoidl/sddetect.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; |