diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-07-06 11:07:42 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-07-06 11:07:42 +0000 |
commit | f0a17a2b752dc3402cb3740b7b717361f102b634 (patch) | |
tree | 3afbb90f950a6d13b835136e65877b2b89ede591 /automation/source/testtool | |
parent | 4620a65b736abbce4966bdd4d9106befad04c729 (diff) |
INTEGRATION: CWS docking1 (1.1.104); FILE MERGED
2004/06/15 15:01:40 gh 1.1.104.1: #i29531#add support for string ids to acces UI elements. Needed for new ToolBoxes
Diffstat (limited to 'automation/source/testtool')
-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 ); |