diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 12:25:48 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 12:25:48 +0000 |
commit | 52bf9f7c73ee328b3f9405a3ef4c7cd51d6c1959 (patch) | |
tree | 787e1339563b396eb7d973b6bdd4f9e246da747f /soltools/inc | |
parent | cc97e7e4d314289fc6de2dd0b6bd76a48789c08d (diff) |
INTEGRATION: CWS ooo20040329 (1.2.36); FILE MERGED
2004/03/17 12:47:46 waratah 1.2.36.1: #i1858# alter order of definitions to remove some warnings from -Wall
Diffstat (limited to 'soltools/inc')
-rw-r--r-- | soltools/inc/st_list.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/soltools/inc/st_list.hxx b/soltools/inc/st_list.hxx index 6044d219112d..5cba52a02a08 100644 --- a/soltools/inc/st_list.hxx +++ b/soltools/inc/st_list.hxx @@ -2,9 +2,9 @@ * * $RCSfile: st_list.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2003-07-16 17:27:41 $ + * last change: $Author: svesik $ $Date: 2004-04-21 13:25:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -176,8 +176,8 @@ class DynamicList : public ST_List< XY* > template <class XX> ST_List<XX>::ST_List() - : len(0), - inhalt(0), + : inhalt(0), + len(0), allocated(0) { alloc(1); @@ -185,8 +185,8 @@ ST_List<XX>::ST_List() template <class XX> ST_List<XX>::ST_List( const ST_List<XX> & i_rList ) - : len(0), - inhalt(0), + : inhalt(0), + len(0), allocated(0) { alloc(i_rList.size()); |