X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/66d6c315a3d99ada984f44966b5d92642aff147f..38cfbffa153c8835025b4207faaf0a12b0b53e6f:/demos/dbbrowse/dbbrowse.h diff --git a/demos/dbbrowse/dbbrowse.h b/demos/dbbrowse/dbbrowse.h index 0949892916..12596fdf90 100644 --- a/demos/dbbrowse/dbbrowse.h +++ b/demos/dbbrowse/dbbrowse.h @@ -8,15 +8,6 @@ // Licence: wxWindows license // RCS-ID: $Id$ //---------------------------------------------------------------------------------------- -// Define a new application type -//---------------------------------------------------------------------------------------- -class MainApp: public wxApp -{ - public: - bool OnInit(void); // Programmstart - wxLocale m_locale; // locale we'll be using and language support - MUST be here ! -}; -//---------------------------------------------------------------------------------------- // Define a new frame type //---------------------------------------------------------------------------------------- class MainFrame: public wxFrame @@ -40,6 +31,16 @@ class MainFrame: public wxFrame DECLARE_EVENT_TABLE() }; //---------------------------------------------------------------------------------------- +// Define a new application type +//---------------------------------------------------------------------------------------- +class MainApp: public wxApp +{ + public: + MainFrame *frame; // The one and only MainFrame + bool OnInit(void); // Programmstart + wxLocale m_locale; // locale we'll be using and language support - MUST be here ! +}; +//---------------------------------------------------------------------------------------- // ID for the menu quit command //---------------------------------------------------------------------------------------- #define QUIT 777