Fixed minor typos in comments.

Yet another iteration.
This commit is contained in:
Artur Wieczorek
2015-06-09 20:04:27 +02:00
parent c9417c41f5
commit 6cc7811394
9 changed files with 20 additions and 20 deletions

View File

@@ -60,7 +60,7 @@ public:
calling wxPropertyGrid::RegisterAdditionalEditors() prior use.
- Pointer to builtin editor is available as wxPGEditor_EditorName
(eg. wxPGEditor_TextCtrl).
(e.g. wxPGEditor_TextCtrl).
- To add new editor you need to register it first using static function
wxPropertyGrid::RegisterEditorClass(), with code like this:
@@ -93,7 +93,7 @@ public:
/**
Returns pointer to the name of the editor. For example,
wxPGEditor_TextCtrl has name "TextCtrl". If you dont' need to access
wxPGEditor_TextCtrl has name "TextCtrl". If you don't need to access
your custom editor by string name, then you do not need to implement
this function.
*/
@@ -398,7 +398,7 @@ public:
//
// Use custom check box code instead of native control
// for cleaner (ie. more integrated) look.
// for cleaner (i.e. more integrated) look.
//
class WXDLLIMPEXP_PROPGRID wxPGCheckBoxEditor : public wxPGEditor
{