Added fixes for Unicode compilation.
Added WXK_ALT incl test. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -122,8 +122,8 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
|
||||
bool
|
||||
wxProgressDialog::Update(int value, const wxString& newmsg)
|
||||
{
|
||||
wxASSERT_MSG( value == -1 || m_gauge, "can't update non existent dialog" );
|
||||
wxASSERT_MSG( value < m_maximum, "invalid progress value" );
|
||||
wxASSERT_MSG( value == -1 || m_gauge, _T("can't update non existent dialog") );
|
||||
wxASSERT_MSG( value < m_maximum, _T("invalid progress value") );
|
||||
|
||||
if( m_gauge )
|
||||
m_gauge->SetValue(value + 1);
|
||||
|
Reference in New Issue
Block a user