1. warning in wxDataObject fixed
2. wxProgressDialog got a new style flag and updated docs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2582 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -54,7 +54,7 @@ public:
|
||||
|
||||
/** Can be called to continue after the cancel button has been pressed, but
|
||||
the program decided to continue the operation (e.g., user didn't
|
||||
configrm it)
|
||||
confirm it)
|
||||
*/
|
||||
void Resume() { m_state = Continue; }
|
||||
|
||||
@@ -78,8 +78,13 @@ private:
|
||||
{
|
||||
Uncancelable = -1, // dialog can't be canceled
|
||||
Canceled, // can be cancelled and, in fact, was
|
||||
Continue // can be cancelled but wasn't
|
||||
Continue, // can be cancelled but wasn't
|
||||
Finished // finished, waiting to be removed from screen
|
||||
} m_state;
|
||||
/// the abort button (or NULL if none)
|
||||
wxButton *m_btnAbort;
|
||||
/// the maximum value
|
||||
int m_maximum;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
Reference in New Issue
Block a user