From 1ee720d034fd99e63e4e1541ec42d7a1b1fa56b5 Mon Sep 17 00:00:00 2001 From: suhyung Eom Date: Tue, 7 Mar 2017 17:19:27 +0900 Subject: [PATCH] [3.0] Downgrade warning level of deprecated PropertyMap Signed-off-by: suhyung Eom Change-Id: Iee720757dd6eb1d813541a3e6e4f980ece308bec --- dali/public-api/object/property-map.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dali/public-api/object/property-map.cpp b/dali/public-api/object/property-map.cpp index 2c2732d..ec30ce9 100644 --- a/dali/public-api/object/property-map.cpp +++ b/dali/public-api/object/property-map.cpp @@ -93,7 +93,7 @@ Property::Value& Property::Map::GetValue( SizeType position ) const const std::string& Property::Map::GetKey( SizeType position ) const { - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetKey() is deprecated and will be removed from next release.\n" ); + DALI_LOG_WARNING( "DEPRECATION WARNING: GetKey() is due to be deprecated in the next release.\n" ); DALI_ASSERT_ALWAYS( position < mImpl->mStringValueContainer.size() && "position out-of-bounds" ); @@ -102,7 +102,7 @@ const std::string& Property::Map::GetKey( SizeType position ) const StringValuePair& Property::Map::GetPair( SizeType position ) const { - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetPair() is deprecated and will be removed from next release.\n" ); + DALI_LOG_WARNING( "DEPRECATION WARNING: GetPair() is due to be deprecated in the next release.\n" ); DALI_ASSERT_ALWAYS( position < mImpl->mStringValueContainer.size() && "position out-of-bounds" ); -- 2.7.4