From 63499d4763e42d76bfd39b79871f611381d2d164 Mon Sep 17 00:00:00 2001 From: Patrick Benavoli Date: Mon, 24 Oct 2011 18:50:03 +0200 Subject: parameter-framework: Sequence BZ: 13152 - Introduced sequence notion in configurations: Sequences are configuration specific and are controlled from the Settings related XML files (order of settings appearance) as well as from the tuning interface (new commands available to set and get the sequence (setElementSequence / getElementSequence). Notes: - sequences will only matter for domains which new "SequenceAware" attribute is set to true (false by default). This attribute is also controlable through the tuning interface (setSequenceAware / getSequenceAware commands). - sequence unaware domain configurations will be applied before sequence aware ones. To allow for such functionality, the XML for settings format had to be reworked, leading to an unfortunate compatibility break. However, one benefit is that now a clear Settings section appears at the bottom of the domain description, which is easier to maintain than the previous structure where the settings appeared as sub-nodes of associated elements. Change-Id: Ic93552fd510ed8847f9c8e7d9d6164f7ea3c8c45 Signed-off-by: Patrick Benavoli Reviewed-on: http://android.intel.com:8080/22558 Reviewed-by: Centelles, Sylvain Tested-by: Barthes, FabienX Reviewed-by: buildbot Tested-by: buildbot Reviewed-on: http://android.intel.com:8080/26780 Reviewed-by: Barthes, FabienX --- parameter/SelectionCriterion.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parameter/SelectionCriterion.cpp') diff --git a/parameter/SelectionCriterion.cpp b/parameter/SelectionCriterion.cpp index d3e561b..2f9f326 100644 --- a/parameter/SelectionCriterion.cpp +++ b/parameter/SelectionCriterion.cpp @@ -49,9 +49,9 @@ void CSelectionCriterion::setCriterionState(int iState) // Check for a change if (_iState != iState) { - CAutoLog autoLog(this, "Selection criterion changed event: " + getFormattedDescription(false)); - _iState = iState; + + log("Selection criterion changed event: %s", getFormattedDescription(false).c_str()); } } -- cgit v1.1