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

Method resendPressed

gui/qt/sendinghandler.cpp:117–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115}
116
117void SendingHandler::resendPressed() {
118 QStringList files;
119
120 for (int row = 0; row < m_table->rowCount(); row++){
121 if (sender() == m_table->cellWidget(row, RECENT_RESEND_COL)) {
122 files.append(m_table->item(row, RECENT_PATH_COL)->text());
123 break;
124 }
125 }
126
127 sendFiles(files, LINK_FILE);
128}
129
130void SendingHandler::removeRow() {
131 for (int row = 0; row < m_table->rowCount(); row++){

Callers

nothing calls this directly

Calls 1

rowCountMethod · 0.80

Tested by

no test coverage detected