Globally replace _T() with wxT().

Standardize on using a single macro across all wxWidgets sources and solve the name clash with Sun CC standard headers (see #10660).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-23 20:30:22 +00:00
parent 32cdc45397
commit 9a83f86094
798 changed files with 10370 additions and 10349 deletions

View File

@@ -101,11 +101,11 @@ private:
{
if ( m_panel->NavigateIn(flags) )
{
wxLogStatus(this, _T("Navigation event processed"));
wxLogStatus(this, wxT("Navigation event processed"));
}
else
{
wxLogStatus(this, _T("Navigation event ignored"));
wxLogStatus(this, wxT("Navigation event ignored"));
}
}
@@ -144,8 +144,8 @@ private:
if ( event.GetKeyCode() == WXK_TAB &&
wxMessageBox
(
_T("Let the Tab be used for navigation?"),
_T("wxWidgets TabOrder sample: Tab key pressed"),
wxT("Let the Tab be used for navigation?"),
wxT("wxWidgets TabOrder sample: Tab key pressed"),
wxICON_QUESTION | wxYES_NO,
this
) != wxYES )
@@ -195,7 +195,7 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
END_EVENT_TABLE()
MyFrame::MyFrame()
: wxFrame(NULL, wxID_ANY, _T("TabOrder wxWidgets Sample"),
: wxFrame(NULL, wxID_ANY, wxT("TabOrder wxWidgets Sample"),
wxDefaultPosition, wxSize(700, 450))
{
SetIcon(wxICON(sample));
@@ -206,14 +206,14 @@ MyFrame::MyFrame()
menuFile->Append(TabOrder_Quit);
wxMenu *menuNav = new wxMenu;
menuNav->Append(TabOrder_TabForward, _T("Tab &forward\tCtrl-F"),
_T("Emulate a <Tab> press"));
menuNav->Append(TabOrder_TabBackward, _T("Tab &backward\tCtrl-B"),
_T("Emulate a <Shift-Tab> press"));
menuNav->Append(TabOrder_TabForward, wxT("Tab &forward\tCtrl-F"),
wxT("Emulate a <Tab> press"));
menuNav->Append(TabOrder_TabBackward, wxT("Tab &backward\tCtrl-B"),
wxT("Emulate a <Shift-Tab> press"));
wxMenuBar *mbar = new wxMenuBar;
mbar->Append(menuFile, _T("&File"));
mbar->Append(menuNav, _T("&Navigate"));
mbar->Append(menuFile, wxT("&File"));
mbar->Append(menuNav, wxT("&Navigate"));
SetMenuBar(mbar);
@@ -229,8 +229,8 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxMessageBox(_T("Tab navigation sample\n(c) 2007 Vadim Zeitlin"),
_T("About TabOrder wxWidgets Sample"), wxOK, this);
wxMessageBox(wxT("Tab navigation sample\n(c) 2007 Vadim Zeitlin"),
wxT("About TabOrder wxWidgets Sample"), wxOK, this);
}
void MyFrame::OnTabForward(wxCommandEvent& WXUNUSED(event))
@@ -255,11 +255,11 @@ void MyFrame::OnIdle( wxIdleEvent& WXUNUSED(event) )
wxString msg;
if ( focus )
{
msg.Printf(_T("Focus is at %s"), s_windowFocus->GetName().c_str());
msg.Printf(wxT("Focus is at %s"), s_windowFocus->GetName().c_str());
}
else
{
msg = _T("No focus");
msg = wxT("No focus");
}
SetStatusText(msg, StatusPane_Focus);
@@ -274,16 +274,16 @@ MyPanel::MyPanel(wxWindow *parent)
: wxPanel(parent, wxID_ANY)
{
wxNotebook *notebook = new wxNotebook(this, wxID_ANY);
notebook->AddPage(CreateButtonPage(notebook), _T("Button"));
notebook->AddPage(CreateTextPage(notebook), _T("Text"));
notebook->AddPage(CreateButtonPage(notebook), wxT("Button"));
notebook->AddPage(CreateTextPage(notebook), wxT("Text"));
wxSizer *sizerV = new wxBoxSizer(wxVERTICAL);
sizerV->Add(notebook, wxSizerFlags(1).Expand());
wxListBox *lbox = new wxListBox(this, wxID_ANY);
lbox->AppendString(_T("Just a"));
lbox->AppendString(_T("simple"));
lbox->AppendString(_T("listbox"));
lbox->AppendString(wxT("Just a"));
lbox->AppendString(wxT("simple"));
lbox->AppendString(wxT("listbox"));
sizerV->Add(lbox, wxSizerFlags(1).Expand());
SetSizerAndFit(sizerV);
@@ -295,10 +295,10 @@ wxWindow *MyPanel::CreateButtonPage(wxWindow *parent)
wxPanel *page = new wxPanel(parent);
wxSizer *sizerPage = new wxBoxSizer(wxHORIZONTAL);
sizerPage->Add(new wxButton(page, wxID_ANY, _T("&First")), flagsBorder);
sizerPage->Add(new wxStaticText(page, wxID_ANY, _T("[st&atic]")),
sizerPage->Add(new wxButton(page, wxID_ANY, wxT("&First")), flagsBorder);
sizerPage->Add(new wxStaticText(page, wxID_ANY, wxT("[st&atic]")),
flagsBorder);
sizerPage->Add(new wxButton(page, wxID_ANY, _T("&Second")), flagsBorder);
sizerPage->Add(new wxButton(page, wxID_ANY, wxT("&Second")), flagsBorder);
page->SetSizer(sizerPage);
@@ -313,14 +313,14 @@ wxWindow *MyPanel::CreateTextPage(wxWindow *parent)
wxPanel *page = new wxPanel(parent);
wxSizer *sizerH = new wxBoxSizer(wxHORIZONTAL);
sizerH->Add(new wxStaticText(page, wxID_ANY, _T("&Label:")), flagsBorder);
sizerH->Add(new MyTabTextCtrl(page, _T("TAB ignored here")), flagsBorder);
sizerH->Add(new wxStaticText(page, wxID_ANY, wxT("&Label:")), flagsBorder);
sizerH->Add(new MyTabTextCtrl(page, wxT("TAB ignored here")), flagsBorder);
sizerPage->Add(sizerH, wxSizerFlags(1).Expand());
sizerH = new wxBoxSizer(wxHORIZONTAL);
sizerH->Add(new wxStaticText(page, wxID_ANY, _T("&Another one:")),
sizerH->Add(new wxStaticText(page, wxID_ANY, wxT("&Another one:")),
flagsBorder);
sizerH->Add(new MyTabTextCtrl(page, _T("press Tab here"), wxTE_PROCESS_TAB),
sizerH->Add(new MyTabTextCtrl(page, wxT("press Tab here"), wxTE_PROCESS_TAB),
flagsBorder);
sizerPage->Add(sizerH, wxSizerFlags(1).Expand());