| 24 | } |
| 25 | |
| 26 | void CDlgDesktopSize::SetDesktopSizes(const QStringList& lstSize) |
| 27 | { |
| 28 | m_pModel->clear(); |
| 29 | foreach (auto s, lstSize) { |
| 30 | QStandardItem *item = new QStandardItem(s); |
| 31 | m_pModel->appendRow(item); |
| 32 | } |
| 33 | m_lstDesktopSize = lstSize; |
| 34 | } |
| 35 | |
| 36 | const QStringList CDlgDesktopSize::GetDesktopSize() |
| 37 | { |
no outgoing calls
no test coverage detected