//
ctlMessageWindow::ctlMessageWindow( wxWindow * parent, wxWindowID id )
- : wxTextCtrl( parent, wxID_ANY, _T(""), wxPoint(0, 0), wxSize(0, 0),
+ : wxTextCtrl( parent, wxID_ANY, wxT(""), wxPoint(0, 0), wxSize(0, 0),
wxTE_MULTILINE | wxTE_READONLY)
{
SetFont(settings->GetSQLFont());
grdParams->SetReadOnly( i, COL_TYPE, true );
grdParams->SetReadOnly( i, COL_VALUE, true );
- grdParams->SetCellValue( 0, COL_NAME, _T( "No arguments required" ));
+ grdParams->SetCellValue( 0, COL_NAME, _( "No arguments required" ));
wxFont font = grdParams->GetCellFont( 0, COL_NAME );
font.SetStyle( wxFONTSTYLE_ITALIC );
grdParams->SetCellFont( 0, COL_NAME, font );
else
{
long tmp;
- if ( params.BeforeFirst(_T(',')).ToLong(&tmp) )
+ if ( params.BeforeFirst(wxT(',')).ToLong(&tmp) )
{
numlen = (int)tmp;
- if ( params.AfterFirst(_T(',')).ToLong(&tmp) )
+ if ( params.AfterFirst(wxT(',')).ToLong(&tmp) )
{
numprec = (int)tmp;