Changed the calls to Skins.QueueMessage() in vdr.c that are related to reporting the status of the editing process back to Skins.Message() in order to have them appear immediately

This commit is contained in:
Klaus Schmidinger 2013-03-03 10:27:23 +01:00
parent 3766a71741
commit 030b41c370
2 changed files with 7 additions and 4 deletions

View File

@ -7645,7 +7645,7 @@ Video Disk Recorder Revision History
- Expanded tabs in PLUGINS/src/dvbhddevice/setup.c.
- Some formatting fixes.
2013-03-01: Version 1.7.39
2013-03-03: Version 1.7.39
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Updated the Polish OSD texts (thanks to Marek Nazarko).
@ -7679,3 +7679,6 @@ Video Disk Recorder Revision History
of not retrying for 10 seconds (reported by Andreas Mair, with help from Oliver Endriss).
- Updated the Spanish OSD texts (thanks to Luca Olivetti).
- Updated the Hungarian language texts (thanks to István Füley).
- Changed the calls to Skins.QueueMessage() in vdr.c that are related to reporting the
status of the editing process back to Skins.Message() in order to have them appear
immediately.

6
vdr.c
View File

@ -22,7 +22,7 @@
*
* The project's page is at http://www.tvdr.de
*
* $Id: vdr.c 2.49 2013/02/14 10:49:06 kls Exp $
* $Id: vdr.c 2.50 2013/03/03 10:25:11 kls Exp $
*/
#include <getopt.h>
@ -1301,9 +1301,9 @@ int main(int argc, char *argv[])
EITScanner.Process();
if (!cCutter::Active() && cCutter::Ended()) {
if (cCutter::Error())
Skins.QueueMessage(mtError, tr("Editing process failed!"));
Skins.Message(mtError, tr("Editing process failed!"));
else
Skins.QueueMessage(mtInfo, tr("Editing process finished"));
Skins.Message(mtInfo, tr("Editing process finished"));
}
}