Merge pull request #32 from catalinr/fixed_code_comments

Fixed wxAppConsole spelling in the comments.
This commit is contained in:
Bryan Petty 2015-06-03 08:43:45 -06:00
commit 09e1223d2e
3 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@
#define __WX_BO_STL ",wx containers"
#endif
// This macro is passed as argument to wxConsoleApp::CheckBuildOptions()
// This macro is passed as argument to wxAppConsole::CheckBuildOptions()
#define WX_BUILD_OPTIONS_SIGNATURE \
__WX_BO_VERSION(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) \
" (" __WX_BO_UNICODE \

View File

@ -73,7 +73,7 @@ public:
void OnClickDynamicHandlerApp(wxCommandEvent& event);
void OnClickStaticHandlerApp(wxCommandEvent& event);
// we override wxConsoleApp::FilterEvent used to highlight the events
// we override wxAppConsole::FilterEvent used to highlight the events
// handling order
virtual int FilterEvent(wxEvent& event) wxOVERRIDE;

View File

@ -49,7 +49,7 @@ void wxQtIdleTimer::idle()
wxQtEventLoopBase::wxQtEventLoopBase()
{
// We need a QCoreApplication for event loops, create it here if it doesn't
// already exist as we can't modify wxConsoleApp
// already exist as we can't modify wxAppConsole
if ( !QCoreApplication::instance() )
{
new QApplication( wxAppConsole::GetInstance()->argc, wxAppConsole::GetInstance()->argv );