summaryrefslogtreecommitdiffstats
path: root/dtrans
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/win32/dtobj/DOTransferable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/dtobj/DOTransferable.cxx b/dtrans/source/win32/dtobj/DOTransferable.cxx
index 6198d8d56e75..0b4f9856184b 100644
--- a/dtrans/source/win32/dtobj/DOTransferable.cxx
+++ b/dtrans/source/win32/dtobj/DOTransferable.cxx
@@ -437,7 +437,7 @@ OUString CDOTransferable::byteStreamToOUString( ByteSequence_t& aByteStream )
sal_Int32 nWChars;
sal_Int32 nMemSize = aByteStream.getLength( );
- // if there is a trailing L"\0" substract 1 from length
+ // if there is a trailing L"\0" subtract 1 from length
if ( 0 == aByteStream[ aByteStream.getLength( ) - 2 ] &&
0 == aByteStream[ aByteStream.getLength( ) - 1 ] )
nWChars = static_cast< sal_Int32 >( nMemSize / sizeof( sal_Unicode ) ) - 1;