MCPcopy Create free account
hub / github.com/KangLin/RabbitRemoteControl / GetDesktopSize

Method GetDesktopSize

Plugins/FreeRDP/Client/DlgDesktopSize.cpp:36–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36const QStringList CDlgDesktopSize::GetDesktopSize()
37{
38 m_lstDesktopSize.clear();
39 for(int i = 0; i < m_pModel->rowCount(); i++)
40 {
41 QModelIndex index = m_pModel->index(i, 0);
42 QString s = m_pModel->data(index).toString();
43 if(checkFormat(s))
44 m_lstDesktopSize << s;
45 }
46 return m_lstDesktopSize;
47}
48
49void CDlgDesktopSize::on_pbAdd_clicked()
50{

Callers

nothing calls this directly

Calls 3

rowCountMethod · 0.45
indexMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected