summaryrefslogtreecommitdiff
path: root/dtrans
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-28 12:43:31 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-30 18:48:24 +0000
commita29bd2dabb194c57be28d48ccc08c909831e7e67 (patch)
tree4afc38c5b5ad034a8784ae0c0f0317b6d676510d /dtrans
parent97d24068021265e5f159211c90839622f7c87cb2 (diff)
cleanup tailing backslashes
Change-Id: Idb4bfc97e7d758c58118742affd9a9345c7a99f2 Reviewed-on: https://gerrit.libreoffice.org/32491 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/generic/generic_clipboard.cxx2
-rw-r--r--dtrans/source/win32/clipb/MtaOleClipb.cxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/dtrans/source/generic/generic_clipboard.cxx b/dtrans/source/generic/generic_clipboard.cxx
index de175f24617d..ed26637cbf9b 100644
--- a/dtrans/source/generic/generic_clipboard.cxx
+++ b/dtrans/source/generic/generic_clipboard.cxx
@@ -144,7 +144,7 @@ void SAL_CALL GenericClipboard::removeClipboardListener( const Reference< XClipb
MutexGuard aGuard( rBHelper.rMutex );
OSL_ENSURE( !rBHelper.bDisposed, "object is disposed" );
if (!rBHelper.bInDispose && !rBHelper.bDisposed)
- rBHelper.aLC.removeInterface( cppu::UnoType<XClipboardListener>::get(), listener ); \
+ rBHelper.aLC.removeInterface( cppu::UnoType<XClipboardListener>::get(), listener );
}
Sequence< OUString > SAL_CALL GenericClipboard_getSupportedServiceNames()
diff --git a/dtrans/source/win32/clipb/MtaOleClipb.cxx b/dtrans/source/win32/clipb/MtaOleClipb.cxx
index 11f9c16ec0e9..9323ed3ab05e 100644
--- a/dtrans/source/win32/clipb/MtaOleClipb.cxx
+++ b/dtrans/source/win32/clipb/MtaOleClipb.cxx
@@ -211,10 +211,10 @@ public:
m_hResult = CoInitialize( nullptr );
if ( S_OK == m_hResult )
- OSL_FAIL( \
+ OSL_FAIL(
"com was not yet initialzed, the thread was not created using osl_createThread" );
else if ( FAILED( m_hResult ) && !( RPC_E_CHANGED_MODE == m_hResult ) )
- OSL_FAIL( \
+ OSL_FAIL(
"com could not be initialized, maybe the thread was not created using osl_createThread" );
}
@@ -325,7 +325,7 @@ CMtaOleClipboard::~CMtaOleClipboard( )
UnregisterClassA( g_szWndClsName, nullptr );
OSL_ENSURE( ( nullptr == m_pfncClipViewerCallback ) &&
- !IsWindow( m_hwndNextClipViewer ), \
+ !IsWindow( m_hwndNextClipViewer ),
"Clipboard viewer not properly unregistered" );
}
@@ -337,7 +337,7 @@ HRESULT CMtaOleClipboard::flushClipboard( )
return E_FAIL;
}
- OSL_ENSURE( GetCurrentThreadId( ) != m_uOleThreadId, \
+ OSL_ENSURE( GetCurrentThreadId( ) != m_uOleThreadId,
"flushClipboard from within clipboard sta thread called" );
MsgCtx aMsgCtx;