CKeyboardInput: add signal OnAfterSave()

supplementing for notifier handling


Origin commit data
------------------
Commit: 0b073949ec
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-03-18 (Mon, 18 Mar 2019)
This commit is contained in:
2019-03-18 13:09:39 +01:00
committed by vanhofen
parent 03233f7b66
commit 87ed995400
2 changed files with 10 additions and 3 deletions

View File

@@ -578,8 +578,13 @@ int CKeyboardInput::exec(CMenuTarget* parent, const std::string &)
delete inputString;
inputString = NULL;
if ((observ) && (msg == CRCInput::RC_red))
observ->changeNotify(title, (void *) valueString->c_str());
if (msg == CRCInput::RC_red)
{
if (observ)
observ->changeNotify(title, (void *) valueString->c_str());
if (msg == CRCInput::RC_red)
OnAfterSave();
}
return res;
}