| 4495 | } |
| 4496 | |
| 4497 | void CCNotePad::setWindowTitleMode(QString filePath, OpenAttr attr) |
| 4498 | { |
| 4499 | QString title = QString("%1 [%2]").arg(filePath).arg(OpenAttrToString(attr)); |
| 4500 | setWindowTitle(title); |
| 4501 | } |
| 4502 | |
| 4503 | const quint64 MAX_TRY_OPEN_FILE_SIZE = 1024 * 1024 * 1024; |
| 4504 |
nothing calls this directly
no test coverage detected