Fix minor typos in comments.

This commit is contained in:
Artur Wieczorek
2015-05-30 20:12:02 +02:00
parent ff685a7a4c
commit 65dee275f2
3 changed files with 3 additions and 3 deletions

View File

@@ -281,7 +281,7 @@ wxPG_EX_HELP_AS_TOOLTIPS = 0x00010000,
/** Prevent TAB from focusing to wxButtons. This behaviour was default /** Prevent TAB from focusing to wxButtons. This behaviour was default
in version 1.2.0 and earlier. in version 1.2.0 and earlier.
NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW
atleast the button doesn't properly propagate key events (yes, I'm using at least the button doesn't properly propagate key events (yes, I'm using
wxWANTS_CHARS). wxWANTS_CHARS).
*/ */
//wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000, //wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000,

View File

@@ -1985,7 +1985,7 @@ void wxPropertyGridManager::OnResize( wxSizeEvent& WXUNUSED(event) )
void wxPropertyGridManager::OnMouseEntry( wxMouseEvent& WXUNUSED(event) ) void wxPropertyGridManager::OnMouseEntry( wxMouseEvent& WXUNUSED(event) )
{ {
// Correct cursor. This is required atleast for wxGTK, for which // Correct cursor. This is required at least for wxGTK, for which
// setting button's cursor to *wxSTANDARD_CURSOR does not work. // setting button's cursor to *wxSTANDARD_CURSOR does not work.
SetCursor( wxNullCursor ); SetCursor( wxNullCursor );
m_onSplitter = 0; m_onSplitter = 0;

View File

@@ -1948,7 +1948,7 @@ wxValidator* wxFileProperty::GetClassValidator()
#if wxUSE_VALIDATORS #if wxUSE_VALIDATORS
WX_PG_DOGETVALIDATOR_ENTRY() WX_PG_DOGETVALIDATOR_ENTRY()
// Atleast wxPython 2.6.2.1 required that the string argument is given // At least wxPython 2.6.2.1 required that the string argument is given
static wxString v; static wxString v;
wxTextValidator* validator = new wxTextValidator(wxFILTER_EXCLUDE_CHAR_LIST,&v); wxTextValidator* validator = new wxTextValidator(wxFILTER_EXCLUDE_CHAR_LIST,&v);