[yast-commit] r42702 - in /trunk/core: libyui/src/YCheckBoxFrame.cc package/yast2-core.changes
Author: sh-sh-sh Date: Wed Dec 5 11:54:09 2007 New Revision: 42702 URL: http://svn.opensuse.org/viewcvs/yast?rev=42702&view=rev Log: Fixed bug #346139: CheckBoxFrame is inverted Modified: trunk/core/libyui/src/YCheckBoxFrame.cc trunk/core/package/yast2-core.changes Modified: trunk/core/libyui/src/YCheckBoxFrame.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/core/libyui/src/YCheckBoxFrame.cc?rev=42702&r1=42701&r2=42702&view=diff ============================================================================== --- trunk/core/libyui/src/YCheckBoxFrame.cc (original) +++ trunk/core/libyui/src/YCheckBoxFrame.cc Wed Dec 5 11:54:09 2007 @@ -29,8 +29,8 @@ { YCheckBoxFramePrivate( const string & label ) : label( label ) - , autoEnable( autoEnable ) - , invertAutoEnable( invertAutoEnable ) + , autoEnable( true ) + , invertAutoEnable( false ) {} string label; @@ -74,6 +74,7 @@ void YCheckBoxFrame::setAutoEnable( bool autoEnable ) { + // y2debug( "Auto enable %s", autoEnable ? "on" : "off" ); priv->autoEnable = autoEnable; } @@ -84,6 +85,7 @@ void YCheckBoxFrame::setInvertAutoEnable( bool invertAutoEnable ) { + // y2debug( "Invert auto enable %s", invertAutoEnable ? "on" : "off" ); priv->invertAutoEnable = invertAutoEnable; } Modified: trunk/core/package/yast2-core.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/core/package/yast2-core.changes?rev=42702&r1=42701&r2=42702&view=diff ============================================================================== --- trunk/core/package/yast2-core.changes (original) +++ trunk/core/package/yast2-core.changes Wed Dec 5 11:54:09 2007 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Wed Dec 5 11:53:14 CET 2007 - sh@suse.de + +- Fixed bug #346139: CheckBoxFrame is inverted + +------------------------------------------------------------------- Mon Dec 3 11:42:01 CET 2007 - coolo@suse.de - continue supporting `Value for RadioButtonGroup (#345490) for now -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
sh-sh-sh@svn.opensuse.org