X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/657a8a359826e46a7fc458216403f54deca34989..f239a20092359e3c914adb79bd39f3f5d2b2e06f:/src/gtk1/app.cpp diff --git a/src/gtk1/app.cpp b/src/gtk1/app.cpp index 81632fb1a1..6c81dc38a4 100644 --- a/src/gtk1/app.cpp +++ b/src/gtk1/app.cpp @@ -246,7 +246,7 @@ int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout) unsigned int i; for ( i = 0; i < nfds; i++ ) { - wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, _T("fd out of range") ); + wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, wxT("fd out of range") ); if ( ufds[i].events & G_IO_IN ) wxFD_SET(ufds[i].fd, &readfds); @@ -531,7 +531,6 @@ bool wxApp::Initialize(int& argc, wxChar **argv) gtk_set_locale(); - // We should have the wxUSE_WCHAR_T test on the _outside_ if (!wxOKlibc()) wxConvCurrent = &wxConvLocal; @@ -588,7 +587,7 @@ bool wxApp::Initialize(int& argc, wxChar **argv) return false; } - // we can not enter threads before gtk_init is done + // we cannot enter threads before gtk_init is done gdk_threads_enter(); if ( !wxAppBase::Initialize(argc, argv) )