From 52bf9f7c73ee328b3f9405a3ef4c7cd51d6c1959 Mon Sep 17 00:00:00 2001 From: Sander Vesik Date: Wed, 21 Apr 2004 12:25:48 +0000 Subject: 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 --- soltools/inc/st_list.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'soltools/inc') 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 ST_List::ST_List() - : len(0), - inhalt(0), + : inhalt(0), + len(0), allocated(0) { alloc(1); @@ -185,8 +185,8 @@ ST_List::ST_List() template ST_List::ST_List( const ST_List & i_rList ) - : len(0), - inhalt(0), + : inhalt(0), + len(0), allocated(0) { alloc(i_rList.size()); -- cgit