summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww1
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-05-29 00:10:42 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-05-29 00:11:30 +0900
commit3ac9b7af766f166a9cd8089ec49e54a48b31194b (patch)
tree8b2c68df4980e520d4463c9d2725e19ea3879a6a /sw/source/filter/ww1
parent1a5aae96bdb20e36a17d77ec60da874037544628 (diff)
removed dead code
Change-Id: Ic70d66befc90450aeb276d53f6da7e81aef85478
Diffstat (limited to 'sw/source/filter/ww1')
-rw-r--r--sw/source/filter/ww1/w1filter.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/sw/source/filter/ww1/w1filter.cxx b/sw/source/filter/ww1/w1filter.cxx
index 0cd32f4cc85d..0a7af7d57800 100644
--- a/sw/source/filter/ww1/w1filter.cxx
+++ b/sw/source/filter/ww1/w1filter.cxx
@@ -1842,7 +1842,6 @@ void Ww1Picture::WriteBmp(SvStream& rOut)
}
OSL_ENSURE(padx*maxy/2==nSize, "Ww1Picture");
sal_uInt16 j;
-#if 1
{
sal_uInt8* pBuf = new sal_uInt8[padx];
for (j=0;nSize>0&&j<maxy;j++)
@@ -1868,24 +1867,6 @@ void Ww1Picture::WriteBmp(SvStream& rOut)
}
delete [] pBuf;
}
-#else
- for (j=0;nSize>0&&j<maxy;j++)
- {
- for (i=0;nSize>0&&i<maxx;i+=2)
- {
- wByte(*p>>4);
- wByte(*p&0xf);
- p++;
- nSize -= sizeof(sal_uInt8);
- }
- for (;i<padx;i+=2)
- {
- wByte(0);
- p++;
- nSize -= sizeof(sal_uInt8);
- }
- }
-#endif
OSL_ENSURE(nSize==0, "Ww1Picture");
#undef wLong
#undef wShort