QMessageBoxconfirmBox(QMessageBox::Question,tr("Recursive download confirmation"),tr("The torrent %1 contains torrent files, do you want to proceed with their download?").arg(h.name()));
// Get Torrent name
QStringtorrent_name;
try{
torrent_name=h.name();
}catch(invalid_handle&){
return;
}
QMessageBoxconfirmBox(QMessageBox::Question,tr("Recursive download confirmation"),tr("The torrent %1 contains torrent files, do you want to proceed with their download?").arg(torrent_name));
addConsoleMessage(tr("Recursive download of file %1 embedded in torrent %2","Recursive download of test.torrent embedded in torrent test2").arg(torrent_relpath).arg(h.name()));