diff options
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/clipb/MtaOleClipb.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/win32/dnd/source.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/win32/dtobj/APNDataObject.cxx | 2 | ||||
-rw-r--r-- | dtrans/test/win32/dnd/atlwindow.cxx | 2 |
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; |