-1->wxID_ANY, TRUE->true, FALSE->false and tabs replacements.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-06-07 16:02:23 +00:00
parent 6652e1a765
commit c82c42d498
30 changed files with 1863 additions and 1907 deletions

View File

@@ -186,7 +186,7 @@ public:
// Set the position of the button.
void SetPos( const wxPoint& pos );
// Returns TRUE if the given position was over the button.
// Returns true if the given position was over the button.
bool HitTest( const wxPoint& pos );
// Responds to a left down event.
@@ -205,7 +205,7 @@ public:
// the desired appearance.
virtual void Draw( wxDC& dc );
// Returns TRUE if the button was clicked.
// Returns true if the button was clicked.
bool WasClicked();
// Reset the button.
@@ -214,7 +214,7 @@ public:
// Enable or disable the button.
void Enable( bool enable ) { mEnabled = enable; }
// Returns TRUE if this button is pressed.
// Returns true if this button is pressed.
bool IsPressed() { return mPressed; }
};