MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / resendSelected

Method resendSelected

gui/qt/sendinghandler.cpp:105–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105void SendingHandler::resendSelected() {
106 QStringList files;
107
108 for (int row = 0; row < m_table->rowCount(); row++) {
109 if (static_cast<QAbstractButton *>(m_table->cellWidget(row, RECENT_SELECT_COL))->isChecked()) {
110 files.append(m_table->item(row, RECENT_PATH_COL)->text());
111 }
112 }
113
114 sendFiles(files, LINK_FILE);
115}
116
117void SendingHandler::resendPressed() {
118 QStringList files;

Callers 1

varResendMethod · 0.80

Calls 1

rowCountMethod · 0.80

Tested by

no test coverage detected