view src/wxwidgets-test.cpp @ 3064:be70678cc47b

Update QScintilla to 2.7.2 * index.html: update qscintilla-version to 2.7.2. * qsintilla.mk: update checksum for 2.7.2, update URL to use PKG_VERSION for URL path.
author "John Donoghue <john.donoghue@ieee.org>
date Mon, 17 Jun 2013 22:13:30 -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)