mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
12 lines
281 B
C++
12 lines
281 B
C++
#include <TextDiffCtrl/TextDiffCtrl.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win;
|
|
TextDiffCtrl ctrl;
|
|
win.Add(ctrl.SizePos());
|
|
ctrl.Set(LoadFile("C:/u/upp.src/uppdev/AssistTest/main.cpp"), LoadFile("C:/u/upp.src/uppdev/ArrayCtrl/main.cpp"));
|
|
win.Run();
|
|
}
|