view src/wxwidgets-test.cpp @ 3941:1368ac3ea124

of-tsa: update to v4.2.9 * src/of-tsa.mk: update version, checksum * src/of-tsa-1-cross-fixes.patch: new file * dist-files.mk: add of-tsa-1-cross-fixes.patch * build_packages.m: update tsa version
author John Donoghue <john.donoghue@ieee.org>
date Sun, 17 May 2015 21:02:38 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <wx/wx.h>

class TestApp: public wxApp
{
private:
    bool OnInit()
    {
        wxFrame *frame = new wxFrame(0, -1, _("Hello, World!"));
        frame->Show(true);
        SetTopWindow(frame);
        return true;
    }
};

IMPLEMENT_APP(TestApp)