mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
record: add space between title and duration in record messages
Origin commit data
------------------
Commit: 78943d08ad
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-07-29 (Sun, 29 Jul 2018)
Origin message was:
------------------
- record: add space between title and duration in record messages
This commit is contained in:
@@ -1478,7 +1478,7 @@ int CRecordManager::exec(CMenuTarget* parent, const std::string & actionKey )
|
||||
if (inst) {
|
||||
std::string title, duration;
|
||||
inst->GetRecordString(title, duration);
|
||||
title += duration;
|
||||
title += " " + duration;
|
||||
tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(),
|
||||
CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, DEFAULT_TIMEOUT) == CMsgBox::mbrYes);
|
||||
}
|
||||
@@ -1642,7 +1642,7 @@ bool CRecordManager::AskToStop(const t_channel_id channel_id, const int recid)
|
||||
|
||||
if(inst) {
|
||||
inst->GetRecordString(title, duration);
|
||||
title += duration;
|
||||
title += " " + duration;
|
||||
}
|
||||
mutex.unlock();
|
||||
if(inst == NULL)
|
||||
|
Reference in New Issue
Block a user