From: Heeyong Song Date: Mon, 3 Dec 2018 05:55:56 +0000 (+0900) Subject: Merge branch 'devel/master' into tizen X-Git-Tag: accepted/tizen/unified/20181204.063745~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=ff0dae2158694b2feed7e32b2aeeb881ecb67d3b;hp=b7f80019a89a0fee0ff5235cacf7d5ab98d26521 Merge branch 'devel/master' into tizen Change-Id: I44db364294594632e6e0047b4ef2779edc199d00 --- 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 ); diff --git a/dali-toolkit/public-api/dali-toolkit-version.cpp b/dali-toolkit/public-api/dali-toolkit-version.cpp index aea1103..d87b2f7 100644 --- a/dali-toolkit/public-api/dali-toolkit-version.cpp +++ b/dali-toolkit/public-api/dali-toolkit-version.cpp @@ -31,7 +31,7 @@ namespace Toolkit const unsigned int TOOLKIT_MAJOR_VERSION = 1; const unsigned int TOOLKIT_MINOR_VERSION = 3; -const unsigned int TOOLKIT_MICRO_VERSION = 51; +const unsigned int TOOLKIT_MICRO_VERSION = 52; const char * const TOOLKIT_BUILD_DATE = __DATE__ " " __TIME__; #ifdef DEBUG_ENABLED diff --git a/packaging/dali-toolkit.spec b/packaging/dali-toolkit.spec index 5ac7ff8..f2d27ea 100644 --- a/packaging/dali-toolkit.spec +++ b/packaging/dali-toolkit.spec @@ -1,6 +1,6 @@ Name: dali-toolkit Summary: Dali 3D engine Toolkit -Version: 1.3.51 +Version: 1.3.52 Release: 1 Group: System/Libraries License: Apache-2.0 and BSD-3-Clause and MIT