diff options
author | Kurt Zenker <kz@openoffice.org> | 2010-01-18 15:24:16 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2010-01-18 15:24:16 +0100 |
commit | 7f5f6c30e89c27422a1576ccceb9b0d79c8e3f0d (patch) | |
tree | 6b208b7f3383233866d619258f0d5b8319ee526b /goodies | |
parent | c979003e3c9601f525011341c322ba2c27e2a0da (diff) |
masterfix: #i10000# use SvMemoryStream::GetEndOfData() instead of SvMemoryStream::GetSize()
Notes
Notes:
split repo tag: libs-gui_ooo/DEV300_m70
Diffstat (limited to 'goodies')
-rw-r--r-- | goodies/source/filter.vcl/ieps/ieps.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/goodies/source/filter.vcl/ieps/ieps.cxx b/goodies/source/filter.vcl/ieps/ieps.cxx index 742985904ce8..7f1ecfc65bd0 100644 --- a/goodies/source/filter.vcl/ieps/ieps.cxx +++ b/goodies/source/filter.vcl/ieps/ieps.cxx @@ -293,7 +293,7 @@ static bool RenderAsPNGThroughHelper(const sal_uInt8* pBuf, sal_uInt32 nBytesRea aMemStm.Seek(0); if ( - aMemStm.GetSize() && + aMemStm.GetEndOfData() && GraphicConverter::Import(aMemStm, rGraphic, CVT_PNG) == ERRCODE_NONE ) { |