#pragma hdrstop
#endif
-#ifndef WX_PRECOMP
- #include <stdio.h>
+#if wxUSE_TEXTDLG
+#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/dialog.h"
#include "wx/button.h"
EndModal(wxID_OK);
}
+
+void wxTextEntryDialog::SetValue(const wxString& val)
+{
+ m_value = val;
+
+ m_textctrl->SetValue(val);
+}
+
+#endif // wxUSE_TEXTDLG