view src/wxwidgets-test.cpp @ 4700:60424c1f370a

of-database: update to v2.4.3 * build_packages.m: update database version. * dist-files.mk: revome fes to of-database-*.patch files * src/of-database.mk: update version, checksum * src/of-database-1-cross-fixes.patch, src/of-database-2-dev-fixes.patch, src/of-database-3-fixes.patch: removed.
author John Donoghue
date Mon, 21 May 2018 07:51:37 -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)