// headers
// ----------------------------------------------------------------------------
-#if 0
#ifdef __GNUG__
- #pragma implementation
-#endif
+ #pragma implementation "dialogbase.h"
#endif
// For compilers that support precompilation, includes "wx.h".
wxString line;
for (size_t pos = 0; pos < message.Len(); pos++)
{
- if (message[pos] == _T('\n'))
+ if (message[pos] == wxT('\n'))
{
if (!line.IsEmpty())
{
wxStaticText *s1 = new wxStaticText( this, -1, line );
box->Add( s1 );
- line = _T("");
+ line = wxT("");
}
else
{