mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4429
This commit is contained in:
parent
6b2f236aa0
commit
7d3625d05f
|
@ -21,6 +21,9 @@
|
||||||
// Revision History:
|
// Revision History:
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.3 2004/10/26 16:58:34 rwalton
|
||||||
|
// *** empty log message ***
|
||||||
|
//
|
||||||
// Revision 1.2 2004/10/22 16:06:10 rwalton
|
// Revision 1.2 2004/10/22 16:06:10 rwalton
|
||||||
// *** empty log message ***
|
// *** empty log message ***
|
||||||
//
|
//
|
||||||
|
@ -96,7 +99,7 @@ bool CValidateAccountKey::Validate(wxWindow *parent)
|
||||||
m_validatorWindow->SetFocus();
|
m_validatorWindow->SetFocus();
|
||||||
|
|
||||||
wxString buf;
|
wxString buf;
|
||||||
buf.Printf(m_errormsg, control->GetValue());
|
buf.Printf(m_errormsg, control->GetValue().c_str());
|
||||||
|
|
||||||
wxMessageBox(buf, _("Validation conflict"),
|
wxMessageBox(buf, _("Validation conflict"),
|
||||||
wxOK | wxICON_EXCLAMATION, parent);
|
wxOK | wxICON_EXCLAMATION, parent);
|
||||||
|
|
|
@ -21,6 +21,9 @@
|
||||||
// Revision History:
|
// Revision History:
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.4 2004/10/26 16:58:34 rwalton
|
||||||
|
// *** empty log message ***
|
||||||
|
//
|
||||||
// Revision 1.3 2004/10/22 16:06:10 rwalton
|
// Revision 1.3 2004/10/22 16:06:10 rwalton
|
||||||
// *** empty log message ***
|
// *** empty log message ***
|
||||||
//
|
//
|
||||||
|
@ -106,7 +109,7 @@ bool CValidateURL::Validate(wxWindow *parent)
|
||||||
m_validatorWindow->SetFocus();
|
m_validatorWindow->SetFocus();
|
||||||
|
|
||||||
wxString buf;
|
wxString buf;
|
||||||
buf.Printf(m_errormsg, control->GetValue());
|
buf.Printf(m_errormsg, control->GetValue().c_str());
|
||||||
|
|
||||||
wxMessageBox(buf, _("Validation conflict"),
|
wxMessageBox(buf, _("Validation conflict"),
|
||||||
wxOK | wxICON_EXCLAMATION, parent);
|
wxOK | wxICON_EXCLAMATION, parent);
|
||||||
|
|
Loading…
Reference in New Issue