summaryrefslogtreecommitdiff
path: root/PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp
diff options
context:
space:
mode:
authorJens Lorenz <jlorenz@de.adit-jv.com>2014-06-11 18:14:58 +0200
committerChristian Linke <christian.linke@bmw.de>2014-06-23 14:05:37 +0200
commit20491c0f31d70e254c56f171c69b95f3d4ad2813 (patch)
tree5409ce980ecf4285a21cf0f1b38ba19dafe3129a /PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp
parentb0bc6ede2d23dde9a177483aa9470871422fe9aa (diff)
downloadaudiomanager-20491c0f31d70e254c56f171c69b95f3d4ad2813.tar.gz
* Bug #100 - removed projecttypes.h which causes compiling conflicts5.1
Signed-off-by: Jens Lorenz <jlorenz@de.adit-jv.com>
Diffstat (limited to 'PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp')
-rw-r--r--PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp b/PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp
index 4dcc0f1..11cacb4 100644
--- a/PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp
+++ b/PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp
@@ -142,7 +142,7 @@ void IAmCommandReceiverShadow::setMainSinkSoundProperty(DBusConnection *conn, DB
dbus_int16_t value = 0;
mDBUSMessageHandler.getProperty(type, value);
am_MainSoundProperty_s mainSoundProperty;
- mainSoundProperty.type = (am_MainSoundPropertyType_e) type;
+ mainSoundProperty.type = (am_CustomMainSoundPropertyType_t) type;
mainSoundProperty.value = (int32_t) value;
am_Error_e returnCode = mpIAmCommandReceive->setMainSinkSoundProperty(mainSoundProperty, sinkID);
mDBUSMessageHandler.initReply(msg);
@@ -163,7 +163,7 @@ void IAmCommandReceiverShadow::setMainSourceSoundProperty(DBusConnection *conn,
dbus_int16_t value = 0;
mDBUSMessageHandler.getProperty(type, value);
am_MainSoundProperty_s mainSoundProperty;
- mainSoundProperty.type = (am_MainSoundPropertyType_e) type;
+ mainSoundProperty.type = (am_CustomMainSoundPropertyType_t) type;
mainSoundProperty.value = (int32_t) value;
am_Error_e returnCode = mpIAmCommandReceive->setMainSourceSoundProperty(mainSoundProperty, sourceID);
mDBUSMessageHandler.initReply(msg);
@@ -183,7 +183,7 @@ void IAmCommandReceiverShadow::setSystemProperty(DBusConnection *conn, DBusMessa
dbus_int16_t value = 0;
mDBUSMessageHandler.getProperty(type, value);
am_SystemProperty_s systemProperty;
- systemProperty.type = (am_SystemPropertyType_e) type;
+ systemProperty.type = (am_CustomSystemPropertyType_t) type;
systemProperty.value = (int32_t) value;
am_Error_e returnCode = mpIAmCommandReceive->setSystemProperty(systemProperty);
mDBUSMessageHandler.initReply(msg);
@@ -465,7 +465,7 @@ void am::IAmCommandReceiverShadow::setSinkMainNotificationConfiguration(DBusConn
dbus_int16_t parameter = 0;
mDBUSMessageHandler.getNotificationConfiguration(type, status, parameter);
am_NotificationConfiguration_s mainNotificationConfiguration;
- mainNotificationConfiguration.type = static_cast<am_NotificationType_e> (type);
+ mainNotificationConfiguration.type = static_cast<am_CustomNotificationType_t> (type);
mainNotificationConfiguration.status = static_cast<am_NotificationStatus_e> (status);
mainNotificationConfiguration.parameter = static_cast<int16_t>(parameter);
am_Error_e returnCode = mpIAmCommandReceive->setMainSinkNotificationConfiguration(sinkID,mainNotificationConfiguration);
@@ -488,7 +488,7 @@ void am::IAmCommandReceiverShadow::setSourceMainNotificationConfiguration(DBusCo
dbus_int16_t parameter = 0;
mDBUSMessageHandler.getNotificationConfiguration(type, status, parameter);
am_NotificationConfiguration_s mainNotificationConfiguration;
- mainNotificationConfiguration.type = static_cast<am_NotificationType_e> (type);
+ mainNotificationConfiguration.type = static_cast<am_CustomNotificationType_t> (type);
mainNotificationConfiguration.status = static_cast<am_NotificationStatus_e> (status);
mainNotificationConfiguration.parameter = static_cast<int16_t>(parameter);
am_Error_e returnCode = mpIAmCommandReceive->setMainSourceNotificationConfiguration(sourceID,mainNotificationConfiguration);