注释问题。
| 1634 | |
| 1635 | //注释问题。 |
| 1636 | void CCNotePad::doComment(int type) |
| 1637 | { |
| 1638 | QWidget* pw = ui.editTabWidget->currentWidget(); |
| 1639 | ScintillaEditView* pEdit = dynamic_cast<ScintillaEditView*>(pw); |
| 1640 | if (pEdit != nullptr && !pEdit->isReadOnly()) |
| 1641 | { |
| 1642 | pEdit->comment(type); |
| 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | void CCNotePad::doFold(int type, bool mode) |
| 1647 | { |
nothing calls this directly
no test coverage detected