.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@15450 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-11-19 09:28:00 +00:00
parent 39234f2ac4
commit 278fae0ba5
3 changed files with 3 additions and 4 deletions

View file

@ -7,8 +7,7 @@ CONSOLE_APP_MAIN
StdLogSetup(LOG_COUT|LOG_FILE);
try {
CoWork co;
co & [] { throw "Worker exception"; };
CoDo([] { throw "Worker exception"; });
}
catch(const char *s) {
LOG("Caught: " << s);

View file

@ -4,7 +4,7 @@ uses
Core;
file
CoWorkExceptions.cpp;
CoDoExceptions.cpp;
mainconfig
"" = "";

View file

@ -215,7 +215,7 @@ struct App : TopWindow {
AddFrame(InsetFrame());
log.AddColumn("");
log.NoHeader();
Add(log.HSizePos().BottomPos(0, 200));
Add(log.HSizePos().BottomPosZ(0, 200));
}
~App()