summaryrefslogtreecommitdiff
path: root/embeddedobj/source/msole/ownview.cxx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2011-04-10 20:29:44 +0200
committerChristina Rossmanith <ChrRossmanith@web.de>2011-04-12 20:42:49 +0200
commit77751521699dd6b50dd1cac4621a0f0fcb2730c4 (patch)
tree7204fef2c2fd56d8f7c48f9e61a4fc458aa505d0 /embeddedobj/source/msole/ownview.cxx
parentfbc18ae2f2c9ca12e57808583fadba2aea3b7e22 (diff)
Remove commented code in libs-core/embeddedobj (partially)
Diffstat (limited to 'embeddedobj/source/msole/ownview.cxx')
-rw-r--r--embeddedobj/source/msole/ownview.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/embeddedobj/source/msole/ownview.cxx b/embeddedobj/source/msole/ownview.cxx
index 16f3968bd5d3..c54fb3a5314a 100644
--- a/embeddedobj/source/msole/ownview.cxx
+++ b/embeddedobj/source/msole/ownview.cxx
@@ -302,12 +302,6 @@ sal_Bool OwnView_Impl::ReadContentsAndGenerateTempFile( const uno::Reference< io
// read the complete size of the Object Package
if ( xInStream->readBytes( aReadSeq, 4 ) != 4 )
return sal_False;
-/*
- sal_uInt32 nLength = (sal_uInt8)aReadSeq[0]
- + (sal_uInt8)aReadSeq[1] * 0x100
- + (sal_uInt8)aReadSeq[2] * 0x10000
- + (sal_uInt8)aReadSeq[3] * 0x1000000;
-*/
// read the first header ( have no idea what does this header mean )
if ( xInStream->readBytes( aReadSeq, 2 ) != 2 || aReadSeq[0] != 2 || aReadSeq[1] != 0 )
return sal_False;