mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-09-07 09:05:57 -05:00
Add const qualifier to various functions
This commit is contained in:
@@ -52,12 +52,12 @@ bool MacroActionRandom::PerformAction()
|
||||
return macros[idx]->PerformActions();
|
||||
}
|
||||
|
||||
void MacroActionRandom::LogAction()
|
||||
void MacroActionRandom::LogAction() const
|
||||
{
|
||||
vblog(LOG_INFO, "running random macro");
|
||||
}
|
||||
|
||||
bool MacroActionRandom::Save(obs_data_t *obj)
|
||||
bool MacroActionRandom::Save(obs_data_t *obj) const
|
||||
{
|
||||
MacroAction::Save(obj);
|
||||
SaveMacroList(obj, _macros);
|
||||
|
||||
Reference in New Issue
Block a user