diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-05-16 23:50:00 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-05-16 23:50:00 +0200 |
commit | c1c9015c7c5f5645cf541f562421970e361d6d2b (patch) | |
tree | f2c5cea1a9d112cfa6a38513afa5cda3bf85489f /l10ntools/inc | |
parent | 1fd367c45cc6a2ff57eb33c70684136874d066cb (diff) |
revert part of 5cd163969b0958bd5812f837ff014409bf5b72ce
size_t is unsigned type, but function returns negative value
(function is apparenly not used anywhere else)
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/xmlparse.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx index 70fe9018eb7c..97e56df59253 100644 --- a/l10ntools/inc/xmlparse.hxx +++ b/l10ntools/inc/xmlparse.hxx @@ -176,7 +176,7 @@ public: ); virtual int GetPosition( ByteString id ); - size_t RemoveChild( XMLElement *pRefElement ); + int RemoveChild( XMLElement *pRefElement ); void RemoveAndDeleteAllChilds(); /// returns a child element which matches the given one |