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:
vanhofen
2018-07-29 00:54:55 +02:00
parent 03b2d0ba44
commit a1da5b5960

View File

@@ -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)