*** empty log message ***

svn path=/trunk/boinc/; revision=4429
This commit is contained in:
Rom Walton 2004-10-26 16:58:34 +00:00
parent 6b2f236aa0
commit 7d3625d05f
2 changed files with 8 additions and 2 deletions

View File

@ -21,6 +21,9 @@
// Revision History:
//
// $Log$
// Revision 1.3 2004/10/26 16:58:34 rwalton
// *** empty log message ***
//
// Revision 1.2 2004/10/22 16:06:10 rwalton
// *** empty log message ***
//
@ -96,7 +99,7 @@ bool CValidateAccountKey::Validate(wxWindow *parent)
m_validatorWindow->SetFocus();
wxString buf;
buf.Printf(m_errormsg, control->GetValue());
buf.Printf(m_errormsg, control->GetValue().c_str());
wxMessageBox(buf, _("Validation conflict"),
wxOK | wxICON_EXCLAMATION, parent);

View File

@ -21,6 +21,9 @@
// Revision History:
//
// $Log$
// Revision 1.4 2004/10/26 16:58:34 rwalton
// *** empty log message ***
//
// Revision 1.3 2004/10/22 16:06:10 rwalton
// *** empty log message ***
//
@ -106,7 +109,7 @@ bool CValidateURL::Validate(wxWindow *parent)
m_validatorWindow->SetFocus();
wxString buf;
buf.Printf(m_errormsg, control->GetValue());
buf.Printf(m_errormsg, control->GetValue().c_str());
wxMessageBox(buf, _("Validation conflict"),
wxOK | wxICON_EXCLAMATION, parent);