mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-03 00:32:41 -06:00
19 lines
216 B
C++
19 lines
216 B
C++
#include "ShowQtf.h"
|
|
|
|
void ShowQtf::Text()
|
|
{
|
|
qtf <<= ~text;
|
|
}
|
|
|
|
ShowQtf::ShowQtf()
|
|
{
|
|
text <<= THISBACK(Text);
|
|
split.Vert(text, qtf);
|
|
Add(split.SizePos());
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
ShowQtf().Run();
|
|
}
|
|
|