summaryrefslogtreecommitdiff
path: root/dtrans
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-19 20:34:57 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-20 09:50:59 +0200
commit1618a3cee763fe9c3393e0511244547674bdd264 (patch)
tree86bbf8035fb94771ab82a30cc96d26bd3b44a220 /dtrans
parentf3b3ccb8cc66aca992bb1cccf8ea29b879547701 (diff)
Fix typos
Change-Id: Iac38284daf0196d6a7f29aaa6e2103c1d76d7cc4 Reviewed-on: https://gerrit.libreoffice.org/77755 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/win32/clipb/MtaOleClipb.cxx2
-rw-r--r--dtrans/source/win32/dnd/source.cxx2
-rw-r--r--dtrans/source/win32/dtobj/APNDataObject.cxx2
-rw-r--r--dtrans/test/win32/dnd/atlwindow.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/dtrans/source/win32/clipb/MtaOleClipb.cxx b/dtrans/source/win32/clipb/MtaOleClipb.cxx
index ae831cc76bb2..a3e28806deed 100644
--- a/dtrans/source/win32/clipb/MtaOleClipb.cxx
+++ b/dtrans/source/win32/clipb/MtaOleClipb.cxx
@@ -150,7 +150,7 @@ static HRESULT MarshalIDataObjectInStream( IDataObject* pIDataObject, LPSTREAM*
*ppStream = nullptr;
return CoMarshalInterThreadInterfaceInStream(
- __uuidof(IDataObject), //The IID of interface to be marshaled
+ __uuidof(IDataObject), //The IID of interface to be marshalled
pIDataObject, //The interface pointer
ppStream //IStream pointer
);
diff --git a/dtrans/source/win32/dnd/source.cxx b/dtrans/source/win32/dnd/source.cxx
index 7851296c7fd7..f02bd9b784e8 100644
--- a/dtrans/source/win32/dnd/source.cxx
+++ b/dtrans/source/win32/dnd/source.cxx
@@ -68,7 +68,7 @@ DragSource::~DragSource()
????
Do we really need a separate thread for
every Dnd operation or only if the source
- thread is a MTA thread
+ thread is an MTA thread
????
*/
void DragSource::StartDragImpl(
diff --git a/dtrans/source/win32/dtobj/APNDataObject.cxx b/dtrans/source/win32/dtobj/APNDataObject.cxx
index 9759e78ee8bf..53342f21f379 100644
--- a/dtrans/source/win32/dtobj/APNDataObject.cxx
+++ b/dtrans/source/win32/dtobj/APNDataObject.cxx
@@ -36,7 +36,7 @@ CAPNDataObject::CAPNDataObject( IDataObjectPtr rIDataObject ) :
OSL_ENSURE( m_rIDataObjectOrg.get( ), "constructing CAPNDataObject with empty data object" );
// we marshal the IDataObject interface pointer here so
- // that it can be unmarshaled multiple times when this
+ // that it can be unmarshalled multiple times when this
// class will be used from another apartment
IStreamPtr pStm;
HRESULT hr = CreateStreamOnHGlobal( nullptr, KEEP_HGLOB_ON_RELEASE, &pStm );
diff --git a/dtrans/test/win32/dnd/atlwindow.cxx b/dtrans/test/win32/dnd/atlwindow.cxx
index 95aca10e75fc..0d8d5d77646a 100644
--- a/dtrans/test/win32/dnd/atlwindow.cxx
+++ b/dtrans/test/win32/dnd/atlwindow.cxx
@@ -45,7 +45,7 @@ DWORD WINAPI MTAFunc(LPVOID pParams);
char* szSTAWin= "XDragSource::executeDrag is called from the same "
"OLE STA thread that created the window.";
-char* szMTAWin= "XDragSource::executeDrag is called from a MTA thread "
+char* szMTAWin= "XDragSource::executeDrag is called from an MTA thread "
"that did not create the window.";
WNDPROC wpOrigEditProc;