mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
16 lines
249 B
C++
16 lines
249 B
C++
#include "WRichEdit.h"
|
|
|
|
WRichEdit::WRichEdit()
|
|
{
|
|
Add(editor.SizePos());
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Ctrl::SetXPStyle();
|
|
|
|
WRichEdit q;
|
|
// q.editor.SetQTF(LoadFile("e:/wedit.qtf"));
|
|
q.Run();
|
|
// SaveFile("e:/wedit.qtf", q.editor.GetQTF());
|
|
}
|