summaryrefslogtreecommitdiff
path: root/include/IAmControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/IAmControl.h')
-rw-r--r--include/IAmControl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/IAmControl.h b/include/IAmControl.h
index 2f2f083..82dad97 100644
--- a/include/IAmControl.h
+++ b/include/IAmControl.h
@@ -288,7 +288,12 @@ public:
* @return E_OK on success, E_DATABASE_ERROR on error, E_NON_EXISTENT if domain
* was not found
*/
- virtual am_Error_e changDomainStateDB(const am_DomainState_e domainState, const am_domainID_t domainID) =0;
+ virtual am_Error_e changeDomainStateDB(const am_DomainState_e domainState, const am_domainID_t domainID) =0;
+ inline am_Error_e changDomainStateDB(const am_DomainState_e domainState, const am_domainID_t domainID)
+ {
+ // legacy redirection due to former typo in function name
+ return changeDomainStateDB(domainState, domainID);
+ }
/**
* changes the mute state of a sink
* @return E_OK on success, E_DATABASE_ERROR on error, E_NON_EXISTENT if sink was