Fix some typos in the comments and messages in the samples.

Closes #16738.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-12-24 13:57:19 +00:00
parent 5b414a2795
commit c2ecbadd3b
6 changed files with 14 additions and 14 deletions

View File

@@ -36,7 +36,7 @@ the d&d operation. Finally, the drop target receives the notification when
the data is dropped onto the associated window (see below) and is responsible
for pasting the data and returning the result code (copy, move or failure).
There is one class for each one of these roles in wxWindows d&d implementation,
plese see their descriptions below for details.
please see their descriptions below for details.
@@ -69,7 +69,7 @@ pointer manipulations and only requires you to override GetCountFormats()
and GetFormat(n) functions to let it know what data formats you support.
If it's not flexible enough for your application (i.e. the set of supported
formats changes over time...), you should override IsAcceptedData(). In 99%
of cases the default implementation is ok and you only have to return count
of cases the default implementation is OK and you only have to return count
of supported formats (CF_xxx constants or one of your custom formats which
must have been registered) and their values.