============================================================================
| 829 | |
| 830 | //============================================================================ |
| 831 | void CDockWidget::saveState(QXmlStreamWriter& s) const |
| 832 | { |
| 833 | s.writeStartElement("Widget"); |
| 834 | s.writeAttribute("Name", objectName()); |
| 835 | s.writeAttribute("Closed", QString::number(d->Closed ? 1 : 0)); |
| 836 | s.writeEndElement(); |
| 837 | } |
| 838 | |
| 839 | |
| 840 | //============================================================================ |
no outgoing calls
no test coverage detected