diff options
Diffstat (limited to 'automation/source')
-rw-r--r-- | automation/source/testtool/cretstrm.cxx | 6 | ||||
-rw-r--r-- | automation/source/testtool/cretstrm.hxx | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/automation/source/testtool/cretstrm.cxx b/automation/source/testtool/cretstrm.cxx index 7143786fe51f..5e75816d7943 100644 --- a/automation/source/testtool/cretstrm.cxx +++ b/automation/source/testtool/cretstrm.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cretstrm.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-06-17 11:40:40 $ + * last change: $Author: obo $ $Date: 2004-07-06 12:07:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,7 +86,7 @@ void CRetStream::Read ( String &aString ) { comm_UniChar* pStr; USHORT nLenInChars; - Read( pStr, nLenInChars ); + CmdBaseStream::Read( pStr, nLenInChars ); aString = String( pStr, nLenInChars ); delete [] pStr; diff --git a/automation/source/testtool/cretstrm.hxx b/automation/source/testtool/cretstrm.hxx index 0a7e851aa97e..4ca4f87b07dc 100644 --- a/automation/source/testtool/cretstrm.hxx +++ b/automation/source/testtool/cretstrm.hxx @@ -2,9 +2,9 @@ * * $RCSfile: cretstrm.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mh $ $Date: 2002-11-18 15:53:48 $ + * last change: $Author: obo $ $Date: 2004-07-06 12:07:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,7 +82,8 @@ public: // CmdBaseStream::Read; void Read ( comm_USHORT &nNr ){CmdBaseStream::Read ( nNr );} void Read ( comm_ULONG &nNr ){CmdBaseStream::Read ( nNr );} - void Read ( comm_UniChar* &aString, comm_USHORT &nLenInChars ){CmdBaseStream::Read ( aString, nLenInChars );} +// void Read ( comm_UniChar* &aString, comm_USHORT &nLenInChars ){CmdBaseStream::Read ( aString, nLenInChars );} + virtual void Read ( SmartId* &pId ){CmdBaseStream::Read ( pId );} void Read ( comm_BOOL &bBool ){CmdBaseStream::Read ( bBool );} // new void Read( String &aString ); |