diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 17:49:51 +0200 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-09-30 12:38:37 +0000 |
commit | f891d8cf6bb6f2db1b72cba64036b5f1fb858309 (patch) | |
tree | e83fea6a46645060f1452fc63ee5151c9b9a185c /dtrans | |
parent | ae13a6819e1dea6646aa0eba435ca9c81101f52c (diff) |
Fix typos
Change-Id: I9dbe1e05cf73af20c25392e639a807854e87fc6e
Reviewed-on: https://gerrit.libreoffice.org/18946
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/clipb/WinClipbImpl.cxx | 4 | ||||
-rw-r--r-- | dtrans/source/win32/clipb/WinClipboard.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dtrans/source/win32/clipb/WinClipbImpl.cxx b/dtrans/source/win32/clipb/WinClipbImpl.cxx index 817d7f2f7a20..0f517c68a4d0 100644 --- a/dtrans/source/win32/clipb/WinClipbImpl.cxx +++ b/dtrans/source/win32/clipb/WinClipbImpl.cxx @@ -78,7 +78,7 @@ CWinClipbImpl::~CWinClipbImpl( ) Reference< XTransferable > SAL_CALL CWinClipbImpl::getContents( ) throw( RuntimeException ) { - // use the shotcut or create a transferable from + // use the shortcut or create a transferable from // system clipboard ClearableMutexGuard aGuard( m_ClipContentMutex ); @@ -156,7 +156,7 @@ void SAL_CALL CWinClipbImpl::flushClipboard( ) throw( RuntimeException ) // but it does not work since FlushClipboard does a callback and frees DataObject // which results in a deadlock in onReleaseDataObject. // FlushClipboard had to be synchron in order to prevent shutdown until all - // clipboard-formats are redered. + // clipboard-formats are rendered. // The request is needed to prevent flushing if we are not clipboard owner (it is // not known what happens if we flush but aren't clipoard owner). // It may be possible to move the request to the clipboard STA thread by saving the diff --git a/dtrans/source/win32/clipb/WinClipboard.cxx b/dtrans/source/win32/clipb/WinClipboard.cxx index b648527d65fd..06d57509d896 100644 --- a/dtrans/source/win32/clipb/WinClipboard.cxx +++ b/dtrans/source/win32/clipb/WinClipboard.cxx @@ -66,7 +66,7 @@ CWinClipboard::CWinClipboard( const Reference< XComponentContext >& rxContext, c // to avoid unnecessary traffic we check first if there is a clipboard // content which was set via setContent, in this case we don't need // to query the content from the clipboard, create a new wrapper object -// and so on, we simply return the orignial XTransferable instead of our +// and so on, we simply return the original XTransferable instead of our // DOTransferable Reference< XTransferable > SAL_CALL CWinClipboard::getContents( ) throw( RuntimeException ) |