aboutsummaryrefslogtreecommitdiff
path: root/Guppies1_0App.cpp
blob: 27a2e5f4074c6bb046d8bc3444212627d967d65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/***************************************************************
 * Name:      Guppies1_0App.cpp
 * Purpose:   Code for Application Class
 * Author:    Paul T. Oliver (nino.trullen@gmail.com)
 * Created:   2012-11-13
 * Copyright: Paul T. Oliver ()
 * License:
 **************************************************************/

#include "Guppies1_0App.h"

//(*AppHeaders
#include "Guppies1_0Main.h"
#include <wx/image.h>
//*)

IMPLEMENT_APP(Guppies1_0App);

bool Guppies1_0App::OnInit()
{
    //(*AppInitialize
    bool wxsOK = true;
    wxInitAllImageHandlers();
    if ( wxsOK )
    {
    	Guppies1_0Dialog Dlg(0);
    	SetTopWindow(&Dlg);
    	Dlg.ShowModal();
    	wxsOK = false;
    }
    //*)
    return wxsOK;

}