mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-03 02:41:12 +02:00
record: add space between title and duration in record messages
Origin commit data
------------------
Branch: ni/coolstream
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
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1478,7 +1478,7 @@ int CRecordManager::exec(CMenuTarget* parent, const std::string & actionKey )
|
|||||||
if (inst) {
|
if (inst) {
|
||||||
std::string title, duration;
|
std::string title, duration;
|
||||||
inst->GetRecordString(title, duration);
|
inst->GetRecordString(title, duration);
|
||||||
title += duration;
|
title += " " + duration;
|
||||||
tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(),
|
tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(),
|
||||||
CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, DEFAULT_TIMEOUT) == CMsgBox::mbrYes);
|
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) {
|
if(inst) {
|
||||||
inst->GetRecordString(title, duration);
|
inst->GetRecordString(title, duration);
|
||||||
title += duration;
|
title += " " + duration;
|
||||||
}
|
}
|
||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
if(inst == NULL)
|
if(inst == NULL)
|
||||||
|
Reference in New Issue
Block a user