summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-09-23 08:24:44 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-09-24 18:35:32 +0200
commitf90da5211abb470982b2070237c7758556a70145 (patch)
tree0ae7f2c9c06cc2ac7c9ff9735de0b027dc1e7300 /vcl
parent02a78dee11f61490ede6e3e16202dc7987bede93 (diff)
Fix typo
Change-Id: Ieb59e035d6454536db44a1aeb3ffdbb25e6bba08 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103226 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/dtrans/target.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/dtrans/target.cxx b/vcl/win/dtrans/target.cxx
index 0aa04ea1f7ab..adddabab7038 100644
--- a/vcl/win/dtrans/target.cxx
+++ b/vcl/win/dtrans/target.cxx
@@ -343,7 +343,7 @@ HRESULT DropTarget::DragEnter( IDataObject *pDataObj,
fire_dragEnter( e);
// Check if the action derived from grfKeyState (m_nCurrentDropAction) or the action set
// by the listener (m_nCurrentDropAction) is allowed by the source. Only an allowed action is set
- // in pdwEffect. The listener notification is asynchron, that is we cannot expect that the listener
+ // in pdwEffect. The listener notification is asynchronous, that is we cannot expect that the listener
// has already reacted to the notification.
// If there is more than one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// then getDropEffect returns DROPEFFECT_MOVE which is the default value if no other modifier is pressed.
@@ -391,7 +391,7 @@ HRESULT DropTarget::DragOver( DWORD grfKeyState,
fire_dragOver( e);
// Check if the action derived from grfKeyState (m_nCurrentDropAction) or the action set
// by the listener (m_nCurrentDropAction) is allowed by the source. Only an allowed action is set
- // in pdwEffect. The listener notification is asynchron, that is we cannot expect that the listener
+ // in pdwEffect. The listener notification is asynchronous, that is we cannot expect that the listener
// has already reacted to the notification.
// If there is more than one valid action which is the case when ALT or RIGHT MOUSE BUTTON is pressed
// then getDropEffect returns DROPEFFECT_MOVE which is the default value if no other modifier is pressed.