As we allow to change document name, we append a never-changing document ID so tabs are stable
| 10673 | |
| 10674 | // As we allow to change document name, we append a never-changing document ID so tabs are stable |
| 10675 | void GetTabName(MyDocument* doc, char* out_buf, size_t out_buf_size) |
| 10676 | { |
| 10677 | snprintf(out_buf, out_buf_size, "%s###doc%d", doc->Name, doc->UID); |
| 10678 | } |
| 10679 | |
| 10680 | // Display placeholder contents for the Document |
| 10681 | void DisplayDocContents(MyDocument* doc) |
no outgoing calls
no test coverage detected