diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-05-24 10:05:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-05-24 10:05:12 +0100 |
commit | 08453f20a7e46e5edc8731aac705ec5a942f68ab (patch) | |
tree | 03f9d9c4daf49b507523f1f3b75385d0c03d9766 /automation/source/testtool/cmdstrm.hxx | |
parent | 7072868caafd214111ca1bf8a62cd8f222a299d1 (diff) |
replace comm_USHORT with comm_UINT16
Diffstat (limited to 'automation/source/testtool/cmdstrm.hxx')
-rw-r--r-- | automation/source/testtool/cmdstrm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/automation/source/testtool/cmdstrm.hxx b/automation/source/testtool/cmdstrm.hxx index 8cf8f0b71..a6ceed1f3 100644 --- a/automation/source/testtool/cmdstrm.hxx +++ b/automation/source/testtool/cmdstrm.hxx @@ -66,9 +66,9 @@ private: String WandleKeyEventString( String aKeys ); // Nutzt pKeyCodes. <RETURN> <SHIFT LEFT LEFT> using CmdBaseStream::Write; - void Write( comm_USHORT nNr ){CmdBaseStream::Write( nNr );} + void Write( comm_UINT16 nNr ){CmdBaseStream::Write( nNr );} void Write( comm_ULONG nNr ){CmdBaseStream::Write( nNr );} - void Write( const comm_UniChar* aString, comm_USHORT nLenInChars ){CmdBaseStream::Write( aString, nLenInChars );} + void Write( const comm_UniChar* aString, comm_UINT16 nLenInChars ){CmdBaseStream::Write( aString, nLenInChars );} void Write( comm_BOOL bBool ){CmdBaseStream::Write( bBool );} // new void Write( String aString, sal_Bool IsKeyString = sal_False ); |