summaryrefslogtreecommitdiff
path: root/AudioManagerCore/include/CAmControlReceiver.h
diff options
context:
space:
mode:
authorMartin Koch <51775589+mkoch-aditg@users.noreply.github.com>2020-05-14 08:20:33 +0200
committerGitHub <noreply@github.com>2020-05-14 08:20:33 +0200
commit3ab71503c97a3be5d88431b947a43b07ed945a13 (patch)
tree044002b6fcb1b760bbf3c293697a55a5f8e22ab1 /AudioManagerCore/include/CAmControlReceiver.h
parentf78c59a0aab913506258dfd363de501aee1aaba8 (diff)
parent8b4a12285068747c63868dff64e6da3e8d5f0118 (diff)
downloadaudiomanager-3ab71503c97a3be5d88431b947a43b07ed945a13.tar.gz
Merge pull request #52 from daduki/master
IAmControl: typo correction for changDomainStateDB to changeDomainStateDB
Diffstat (limited to 'AudioManagerCore/include/CAmControlReceiver.h')
-rw-r--r--AudioManagerCore/include/CAmControlReceiver.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/AudioManagerCore/include/CAmControlReceiver.h b/AudioManagerCore/include/CAmControlReceiver.h
index 0a0e1f3..bd897de 100644
--- a/AudioManagerCore/include/CAmControlReceiver.h
+++ b/AudioManagerCore/include/CAmControlReceiver.h
@@ -73,7 +73,12 @@ public:
am_Error_e changeMainConnectionStateDB(const am_mainConnectionID_t mainconnectionID, const am_ConnectionState_e connectionState);
am_Error_e changeSinkMainVolumeDB(const am_mainVolume_t mainVolume, const am_sinkID_t sinkID);
am_Error_e changeSinkAvailabilityDB(const am_Availability_s &availability, const am_sinkID_t sinkID);
- am_Error_e changDomainStateDB(const am_DomainState_e domainState, const am_domainID_t domainID);
+ am_Error_e changeDomainStateDB(const am_DomainState_e domainState, const am_domainID_t domainID);
+ 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);
+ }
am_Error_e changeSinkMuteStateDB(const am_MuteState_e muteState, const am_sinkID_t sinkID);
am_Error_e changeMainSinkSoundPropertyDB(const am_MainSoundProperty_s &soundProperty, const am_sinkID_t sinkID);
am_Error_e changeMainSinkSoundPropertiesDB(const std::vector<am_MainSoundProperty_s> &listSoundProperties, const am_sinkID_t sinkID);