diff options
author | Martin Hollmichel <mh@openoffice.org> | 2001-09-28 13:32:42 +0000 |
---|---|---|
committer | Martin Hollmichel <mh@openoffice.org> | 2001-09-28 13:32:42 +0000 |
commit | 5bf13559ed33f91aadbc9b29796be70ee18cd651 (patch) | |
tree | 180fea2e0a45d3175a575a1f847bc307fa6baa22 /xml2cmp | |
parent | 7654d8008ab99157ff5991dcd9a3738b42a3bcbe (diff) |
reorder initialization list to match declaration order
Diffstat (limited to 'xml2cmp')
-rw-r--r-- | xml2cmp/source/support/list.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xml2cmp/source/support/list.hxx b/xml2cmp/source/support/list.hxx index 13b21d911932..00d7b11fa882 100644 --- a/xml2cmp/source/support/list.hxx +++ b/xml2cmp/source/support/list.hxx @@ -2,9 +2,9 @@ * * $RCSfile: list.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: np $ $Date: 2001-03-23 13:23:17 $ + * last change: $Author: mh $ $Date: 2001-09-28 14:32:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -156,8 +156,8 @@ class DynamicList : public List<XY*> template <class XX> List<XX>::List() - : len(0), - inhalt(0) + : inhalt(0), + len(0) { alloc(1); } |