diff -r 2ca25c6aeafd code/ryzom/client/src/interface_v3/interface_options.cpp --- a/code/ryzom/client/src/interface_v3/interface_options.cpp Wed May 12 12:48:20 2010 +0200 +++ b/code/ryzom/client/src/interface_v3/interface_options.cpp Wed May 12 14:06:58 2010 +0200 @@ -48,7 +48,7 @@ fromString(str, _Int); fromString(str, _Float); _Color= CInterfaceElement::convertColor (str.c_str()); - _Bool= CInterfaceElement::convertBool(str.c_str()); + _Boolean= CInterfaceElement::convertBool(str.c_str()); } diff -r 2ca25c6aeafd code/ryzom/client/src/interface_v3/interface_options.h --- a/code/ryzom/client/src/interface_v3/interface_options.h Wed May 12 12:48:20 2010 +0200 +++ b/code/ryzom/client/src/interface_v3/interface_options.h Wed May 12 14:06:58 2010 +0200 @@ -37,14 +37,14 @@ _Color= NLMISC::CRGBA::White; _Int= 0; _Float= 0; - _Bool= false; + _Boolean= false; } const std::string &getValStr () const {return _Str;} sint32 getValSInt32() const {return _Int;} float getValFloat () const {return _Float;} NLMISC::CRGBA getValColor () const {return _Color;} - bool getValBool () const {return _Bool;} + bool getValBool () const {return _Boolean;} void init(const std::string &str); @@ -57,7 +57,7 @@ NLMISC::CRGBA _Color; sint32 _Int; float _Float; - bool _Bool; + bool _Boolean; };