mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
12 lines
161 B
C++
12 lines
161 B
C++
#include "EnableCase.h"
|
|
|
|
EnableCase::EnableCase()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
sw.DisableCase(1);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
EnableCase().Run();
|
|
}
|