| 5760 | } |
| 5761 | |
| 5762 | void BufferViewer::ClearModels() |
| 5763 | { |
| 5764 | for(BufferItemModel *m : {m_ModelIn, m_ModelOut1, m_ModelOut2}) |
| 5765 | { |
| 5766 | if(!m) |
| 5767 | continue; |
| 5768 | |
| 5769 | m->beginReset(); |
| 5770 | m->endReset(BufferConfiguration()); |
| 5771 | } |
| 5772 | } |
| 5773 | |
| 5774 | void BufferViewer::CalcColumnWidth(int maxNumRows) |
| 5775 | { |
nothing calls this directly
no test coverage detected