mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
20 lines
239 B
C++
20 lines
239 B
C++
#include "testcrash.h"
|
|
|
|
|
|
|
|
testcrash::testcrash()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
PostCallback(THISBACK(testing));
|
|
}
|
|
|
|
void testcrash::testing()
|
|
{
|
|
mList.AddColumn("TEST");
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
testcrash().Run();
|
|
}
|
|
|