examples: Fix in Gui20c

git-svn-id: svn://ultimatepp.org/upp/trunk@1532 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-08-24 19:07:18 +00:00
parent a2ff03adff
commit ae025e191f

View file

@ -12,8 +12,8 @@ struct MyApp : TopWindow {
Add(ok.SetLabel("OK").LeftPosZ(10, 64).TopPosZ(40, 24));
Add(cancel.SetLabel("Cancel").LeftPosZ(100, 64).TopPosZ(40, 24));
ok <<= Acceptor(IDOK);
cancel <<= Rejector(IDCANCEL);
ok.Ok() <<= Acceptor(IDOK);
cancel.Cancel() <<= Rejector(IDCANCEL);
}
};