Kaydet (Commit) 65afee03 authored tarafından Noel Grandin's avatar Noel Grandin

sccomp: sal_Bool->bool

Change-Id: I9156ba8671348fd77b93921236827235775e1108
üst fda8ac2d
...@@ -96,13 +96,13 @@ double SolverComponent::GetValue( const uno::Reference<sheet::XSpreadsheetDocume ...@@ -96,13 +96,13 @@ double SolverComponent::GetValue( const uno::Reference<sheet::XSpreadsheetDocume
SolverComponent::SolverComponent() : SolverComponent::SolverComponent() :
OPropertyContainer( GetBroadcastHelper() ), OPropertyContainer( GetBroadcastHelper() ),
mbMaximize( sal_True ), mbMaximize( true ),
mbNonNegative( sal_False ), mbNonNegative( false ),
mbInteger( sal_False ), mbInteger( false ),
mnTimeout( 100 ), mnTimeout( 100 ),
mnEpsilonLevel( 0 ), mnEpsilonLevel( 0 ),
mbLimitBBDepth( sal_True ), mbLimitBBDepth( true ),
mbSuccess( sal_False ), mbSuccess( false ),
mfResultValue( 0.0 ) mfResultValue( 0.0 )
{ {
// for XPropertySet implementation: // for XPropertySet implementation:
......
...@@ -73,15 +73,15 @@ protected: ...@@ -73,15 +73,15 @@ protected:
com::sun::star::table::CellAddress maObjective; com::sun::star::table::CellAddress maObjective;
com::sun::star::uno::Sequence< com::sun::star::table::CellAddress > maVariables; com::sun::star::uno::Sequence< com::sun::star::table::CellAddress > maVariables;
com::sun::star::uno::Sequence< com::sun::star::sheet::SolverConstraint > maConstraints; com::sun::star::uno::Sequence< com::sun::star::sheet::SolverConstraint > maConstraints;
sal_Bool mbMaximize; bool mbMaximize;
// set via XPropertySet // set via XPropertySet
sal_Bool mbNonNegative; bool mbNonNegative;
sal_Bool mbInteger; bool mbInteger;
sal_Int32 mnTimeout; sal_Int32 mnTimeout;
sal_Int32 mnEpsilonLevel; sal_Int32 mnEpsilonLevel;
sal_Bool mbLimitBBDepth; bool mbLimitBBDepth;
// results // results
sal_Bool mbSuccess; bool mbSuccess;
double mfResultValue; double mfResultValue;
com::sun::star::uno::Sequence< double > maSolution; com::sun::star::uno::Sequence< double > maSolution;
OUString maStatus; OUString maStatus;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment