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:
@@ -62,13 +62,13 @@ private:
|
||||
|
||||
wxGUIEventLoop::~wxGUIEventLoop()
|
||||
{
|
||||
wxASSERT_MSG( !m_impl, _T("should have been deleted in Run()") );
|
||||
wxASSERT_MSG( !m_impl, wxT("should have been deleted in Run()") );
|
||||
}
|
||||
|
||||
int wxGUIEventLoop::Run()
|
||||
{
|
||||
// event loops are not recursive, you need to create another loop!
|
||||
wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
|
||||
wxCHECK_MSG( !IsRunning(), -1, wxT("can't reenter a message loop") );
|
||||
|
||||
wxEventLoopActivator activate(this);
|
||||
|
||||
@@ -87,7 +87,7 @@ int wxGUIEventLoop::Run()
|
||||
|
||||
void wxGUIEventLoop::Exit(int rc)
|
||||
{
|
||||
wxCHECK_RET( IsRunning(), _T("can't call Exit() if not running") );
|
||||
wxCHECK_RET( IsRunning(), wxT("can't call Exit() if not running") );
|
||||
|
||||
m_impl->SetExitCode(rc);
|
||||
|
||||
@@ -112,7 +112,7 @@ bool wxGUIEventLoop::Pending() const
|
||||
|
||||
bool wxGUIEventLoop::Dispatch()
|
||||
{
|
||||
wxCHECK_MSG( IsRunning(), false, _T("can't call Dispatch() if not running") );
|
||||
wxCHECK_MSG( IsRunning(), false, wxT("can't call Dispatch() if not running") );
|
||||
|
||||
gtk_main_iteration();
|
||||
|
||||
|
Reference in New Issue
Block a user