Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-30 09:20:07 +0300
committerCampbell Barton <campbell@blender.org>2022-08-30 09:22:49 +0300
commitc29d63aa5e22c202fd39c32ecd4e87b5704edfdd (patch)
tree6a1e39df1cf1c1867ad2ad645b1052893284a272 /intern/ghost/intern/GHOST_DropTargetWin32.cpp
parent24b8ccaa94a66a3552dc7100996d83d492a55ada (diff)
Cleanup: spelling in comments
Diffstat (limited to 'intern/ghost/intern/GHOST_DropTargetWin32.cpp')
-rw-r--r--intern/ghost/intern/GHOST_DropTargetWin32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/ghost/intern/GHOST_DropTargetWin32.cpp b/intern/ghost/intern/GHOST_DropTargetWin32.cpp
index 6f39947ae6d..2283cff3827 100644
--- a/intern/ghost/intern/GHOST_DropTargetWin32.cpp
+++ b/intern/ghost/intern/GHOST_DropTargetWin32.cpp
@@ -212,8 +212,8 @@ void *GHOST_DropTargetWin32::getDropDataAsFilenames(IDataObject *pDataObject)
STGMEDIUM stgmed;
HDROP hdrop;
- /* Check if dataobject supplies the format we want.
- * Double checking here, first in getGhostType. */
+ /* Check if data-object supplies the format we want.
+ * Double checking here, first in #getGhostType. */
if (pDataObject->QueryGetData(&fmtetc) == S_OK) {
if (pDataObject->GetData(&fmtetc, &stgmed) == S_OK) {
hdrop = (HDROP)::GlobalLock(stgmed.hGlobal);
@@ -257,7 +257,7 @@ void *GHOST_DropTargetWin32::getDropDataAsString(IDataObject *pDataObject)
STGMEDIUM stgmed;
/* Try unicode first.
- * Check if dataobject supplies the format we want. */
+ * Check if data-object supplies the format we want. */
if (pDataObject->QueryGetData(&fmtetc) == S_OK) {
if (pDataObject->GetData(&fmtetc, &stgmed) == S_OK) {
LPCWSTR wstr = (LPCWSTR)::GlobalLock(stgmed.hGlobal);