diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 12:27:10 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 12:27:10 +0000 |
commit | 5250caa2ebc5b01ea6d81555b457636cac62859e (patch) | |
tree | db5b33ead78e3e4d713784b44450fb5aa0d861ef /xml2cmp | |
parent | de4f6e7864942ed2bd31e83caf1826331bb17d5c (diff) |
INTEGRATION: CWS obo05 (1.5.16); FILE MERGED
2006/06/27 13:15:59 obo 1.5.16.1: #i53611# port for .net 2005
Diffstat (limited to 'xml2cmp')
-rw-r--r-- | xml2cmp/source/xcd/filebuff.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xml2cmp/source/xcd/filebuff.hxx b/xml2cmp/source/xcd/filebuff.hxx index f93e6043621b..f927f7f3521d 100644 --- a/xml2cmp/source/xcd/filebuff.hxx +++ b/xml2cmp/source/xcd/filebuff.hxx @@ -4,9 +4,9 @@ * * $RCSfile: filebuff.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 12:02:43 $ + * last change: $Author: vg $ $Date: 2006-09-25 13:27:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -46,7 +46,7 @@ class Buffer { return s; } char * Data() { return s; } void SetSize( - long i_size ) + unsigned long i_size ) { if (s) delete [] s; s = new char [i_size]; } private: char * s; @@ -60,4 +60,3 @@ bool LoadXmlFile( #endif - |