~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/templates/common/wx-app-ash.cpp

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "app.h"
 
2
#include "main.h"
 
3
 
 
4
IMPLEMENT_APP(MyApp);
 
5
 
 
6
bool MyApp::OnInit()
 
7
{
 
8
        MyFrame* frame = new MyFrame(0L, _("wxWidgets Application Template"));
 
9
        frame->Show();
 
10
        return true;
 
11
}