| 103 | } |
| 104 | |
| 105 | void 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 | |
| 117 | void SendingHandler::resendPressed() { |
| 118 | QStringList files; |