merge wrt-plugins-tizen_0.2.0-3
[platform/framework/web/wrt-plugins-tizen.git] / src / platform / API / Call / CallServiceFilter.cpp
index 87559df..d342b2a 100755 (executable)
@@ -20,16 +20,16 @@ namespace TizenApis {
 namespace Api {
 namespace Call {
 CallServiceFilter::CallServiceFilter() :
-               m_serviceTypeId(""),
+               m_callType(""),
                m_serviceName(""),
                m_providerId("")
 {
        m_tags = StringArrayPtr(new StringArray());
 }
 
-void CallServiceFilter::setServiceTypeId(const std::string serviceTypeId)
+void CallServiceFilter::setCallType(const std::string callType)
 {
-       m_serviceTypeId = serviceTypeId;
+       m_callType = callType;
 }
 
 void CallServiceFilter::setTags(const StringArrayPtr tags)
@@ -47,9 +47,9 @@ void CallServiceFilter::setProviderId(const std::string providerId)
        m_providerId = providerId;
 }
 
-std::string CallServiceFilter::getServiceTypeId() const
+std::string CallServiceFilter::getCallType() const
 {
-       return m_serviceTypeId;
+       return m_callType;
 }
 
 StringArrayPtr CallServiceFilter::getTags() const