static OccTree2 makeOccTree(S theme) { ret makeOccTree(theme, true); } static OccTree2 makeOccTree(S theme, bool print) { OccTree2 tree = goodDialogs2occTree2(optExpandDialogs(loadDialogs(theme))); if (print) printOccTree2(tree); ret tree; } static OccTree2 makeOccTree(L dialogs) { OccTree2 tree = goodDialogs2occTree2(dialogs); printOccTree2(tree); ret tree; }