From: Kimmo Hoikka Date: Wed, 28 Nov 2018 14:42:40 +0000 (+0000) Subject: Fix Builder to not use deprecated Property::Map API to prevent warnings in most demos X-Git-Tag: dali_1.3.52~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=a97ac15ed81fec420ac3597a4b3c1da7565f6aeb;ds=sidebyside Fix Builder to not use deprecated Property::Map API to prevent warnings in most demos GetKey() is deprecated so using GetKeyAt() instead Change-Id: I5297168ddc2baa8b3d2e6a9fb205573768bb6ce9 --- diff --git a/dali-toolkit/internal/builder/builder-impl.cpp b/dali-toolkit/internal/builder/builder-impl.cpp index e5da81e..73facc7 100644 --- a/dali-toolkit/internal/builder/builder-impl.cpp +++ b/dali-toolkit/internal/builder/builder-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -820,13 +820,13 @@ void Builder::LoadConfiguration( const TreeNode& root, Property::Map& intoMap ) // try to find other "{","}" pair after current left position. pos = leftPos+1; - for( unsigned int i = 0; i < mReplacementMap.Count() ; i++ ) + for( uint32_t i = 0; i < mReplacementMap.Count() ; i++ ) { - std::string constant = mReplacementMap.GetKey(i); + Property::Key constant = mReplacementMap.GetKeyAt(i); // Compare string which is between "{" and "}" with constant string // If they are same, change string in stringConfigValue to mapped constant value. - if ( stringConfigValue.compare( leftPos+1, rightPos-leftPos-1,constant) == 0 ) + if ( 0 == stringConfigValue.compare( leftPos+1, rightPos-leftPos-1, constant.stringKey ) ) { std::string replaceString; mReplacementMap.GetValue(i).Get( replaceString );