View | Details | Raw Unified | Return to issue 25568
Collapse All | Expand All

(-)ooo_1.1.0_src.orig/automation/source/inc/cmdbasestream.hxx (+1 lines)
Lines 110-115 Link Here
110
	void Read ( comm_BOOL &bBool );
110
	void Read ( comm_BOOL &bBool );
111
    comm_USHORT GetNextType();
111
    comm_USHORT GetNextType();
112
112
113
        void Write( comm_UINT32 nNr );
113
	void Write( comm_USHORT nNr );
114
	void Write( comm_USHORT nNr );
114
	void Write( comm_ULONG nNr );
115
	void Write( comm_ULONG nNr );
115
	void Write( const comm_UniChar* aString, comm_USHORT nLenInChars );
116
	void Write( const comm_UniChar* aString, comm_USHORT nLenInChars );
(-)ooo_1.1.0_src.orig/automation/source/testtool/cmdstrm.hxx (+1 lines)
Lines 110-115 Link Here
110
//  CmdBaseStream::Write;
110
//  CmdBaseStream::Write;
111
    void Write( comm_USHORT nNr ){CmdBaseStream::Write( nNr );}
111
    void Write( comm_USHORT nNr ){CmdBaseStream::Write( nNr );}
112
    void Write( comm_ULONG nNr ){CmdBaseStream::Write( nNr );}
112
    void Write( comm_ULONG nNr ){CmdBaseStream::Write( nNr );}
113
    void Write( comm_UINT32 nNr ){CmdBaseStream::Write( nNr );}
113
	void Write( const comm_UniChar* aString, comm_USHORT nLenInChars ){CmdBaseStream::Write( aString, nLenInChars );}
114
	void Write( const comm_UniChar* aString, comm_USHORT nLenInChars ){CmdBaseStream::Write( aString, nLenInChars );}
114
	void Write( comm_BOOL bBool ){CmdBaseStream::Write( bBool );}
115
	void Write( comm_BOOL bBool ){CmdBaseStream::Write( bBool );}
115
//  new
116
//  new

Return to issue 25568