summaryrefslogtreecommitdiff
path: root/xml2cmp/source/support/list.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xml2cmp/source/support/list.hxx')
-rw-r--r--xml2cmp/source/support/list.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xml2cmp/source/support/list.hxx b/xml2cmp/source/support/list.hxx
index c52de1f25f70..66888ee6bfbc 100644
--- a/xml2cmp/source/support/list.hxx
+++ b/xml2cmp/source/support/list.hxx
@@ -165,7 +165,7 @@ template <class XX>
void
List<XX>::checkSize(unsigned newLength)
{
- // neuen Platzbedarf pruefen:
+ // test new size requirement:
unsigned newSpace = space();
if (newLength > newSpace)
{
@@ -184,7 +184,7 @@ List<XX>::checkSize(unsigned newLength)
}
}
- // Veraenderung ?:
+ // change?
if (newSpace != space())
alloc(newSpace,true);
}