Work on wxAppEx continues...

This commit is contained in:
Simon Rozman
2016-02-05 09:54:11 +01:00
parent 48767ae1b6
commit d15383ce6e
5 changed files with 21 additions and 2 deletions

View File

@@ -24,6 +24,7 @@
#include <ShlObj.h>
#include <wx/frame.h>
#include <wx/string.h>
#define wxABT_AUTOHIDETIMERID 1

View File

@@ -20,6 +20,7 @@
#pragma once
#include <wx/app.h>
#include <wx/intl.h>
///
@@ -28,8 +29,14 @@
class wxAppEx : public wxApp
{
public:
///
/// Called when application initializes.
///
/// \returns
/// - true if initialization succeeded
/// - false otherwise
virtual bool OnInit();
protected:
wxLocale m_locale;
wxLocale m_locale; ///< Current locale
};