------------------------------------------------------------------------
+r442 | gregoa | 2007-03-09 00:35:45 +0100 (Fri, 09 Mar 2007) | 1 line
+Changed paths:
+ M /teleschorsch/trunk/teleschorschrc
+
+comment out m6/12.50
+------------------------------------------------------------------------
r441 | gregoa | 2007-03-08 17:09:47 +0100 (Thu, 08 Mar 2007) | 1 line
Changed paths:
M /teleschorsch/trunk/qteleschorsch_fr.ts
int offsetSec = zero.secsTo(offset);
if (player.indexOf("vlc") != -1) arguments.append("--start-time");
if (player.indexOf("gmplayer") != -1) {
- arguments << "--cache" << "512"; // --cache 512 does not belong to this function but for now...
+ arguments << "-cache" << "512"; // -cache 512 does not belong to this function but for now...
arguments << "-ss";
}
arguments << QString::number(offsetSec);
bool MainDialog::startAction() {
- int row = lwChannels->currentRow();
- if (row > 0) {
+ QListWidgetItem* selectedChannel = lwChannels->selectedItems().at(0);
+ int row = lwChannels->row(selectedChannel);
+ if (row > -1) {
Channel channel = channelVec[row];
QDate date = calDate->selectedDate();
QString substUrl;