diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 12:02:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 12:02:08 +0000 |
commit | adf9ee4b7f65fd2adaf739fd10a6400941f4b4f3 (patch) | |
tree | dca9985fae8a1d3335d0acdb7b0e57a73cd8b703 /forms/source/richtext/rtattributes.hxx | |
parent | 7b99093c90fd038ee12993a550bb0cd870d36ecd (diff) |
INTEGRATION: CWS warnings01 (1.3.68); FILE MERGED
2006/03/14 15:20:33 fs 1.3.68.1: #i57457# warning-free code
Diffstat (limited to 'forms/source/richtext/rtattributes.hxx')
-rw-r--r-- | forms/source/richtext/rtattributes.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/forms/source/richtext/rtattributes.hxx b/forms/source/richtext/rtattributes.hxx index b4525f22a..089faa109 100644 --- a/forms/source/richtext/rtattributes.hxx +++ b/forms/source/richtext/rtattributes.hxx @@ -4,9 +4,9 @@ * * $RCSfile: rtattributes.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:11:01 $ + * last change: $Author: hr $ $Date: 2006-06-19 13:02:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -102,22 +102,22 @@ namespace frm //==================================================================== //................................................................ inline AttributeState::AttributeState( ) - :eSimpleState( eIndetermined ) - ,pItemHandle( NULL ) + :pItemHandle( NULL ) + ,eSimpleState( eIndetermined ) { } //................................................................ inline AttributeState::AttributeState( AttributeCheckState _eCheckState ) - :eSimpleState( _eCheckState ) - ,pItemHandle( NULL ) + :pItemHandle( NULL ) + ,eSimpleState( _eCheckState ) { } //................................................................ inline AttributeState::AttributeState( const AttributeState& _rSource ) - :eSimpleState( eIndetermined ) - ,pItemHandle( NULL ) + :pItemHandle( NULL ) + ,eSimpleState( eIndetermined ) { operator=( _rSource ); } |