| 361 | } |
| 362 | |
| 363 | static bool IsSubordinate(int levelStart, int levelTry) { |
| 364 | if (levelTry & SC_FOLDLEVELWHITEFLAG) |
| 365 | return true; |
| 366 | else |
| 367 | return (levelStart & SC_FOLDLEVELNUMBERMASK) < (levelTry & SC_FOLDLEVELNUMBERMASK); |
| 368 | } |
| 369 | |
| 370 | int Document::GetLastChild(int lineParent, int level, int lastLine) { |
| 371 | if (level == -1) |