summaryrefslogtreecommitdiff
path: root/basic/source/classes/sbxmod.cxx
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2001-11-14 10:11:32 +0000
committerAndreas Bregas <ab@openoffice.org>2001-11-14 10:11:32 +0000
commitf038412db8a52da7baf5b0de1f3f9679ee4ed415 (patch)
tree3056feaf62401dc63bdb350a37181110bf2f415d /basic/source/classes/sbxmod.cxx
parent551aafa54d11f227794ec4adc96adcde2737510b (diff)
#92172# Fixed StoreBinaryData()
Diffstat (limited to 'basic/source/classes/sbxmod.cxx')
-rw-r--r--basic/source/classes/sbxmod.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 4bc80ef8ae..5e45a3ba6c 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sbxmod.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: ab $ $Date: 2001-10-23 12:06:51 $
+ * last change: $Author: ab $ $Date: 2001-11-14 11:11:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1002,10 +1002,10 @@ BOOL SbModule::StoreData( SvStream& rStrm ) const
// Store only image, no source
BOOL SbModule::StoreBinaryData( SvStream& rStrm )
{
- BOOL bRet = SbxObject::StoreData( rStrm );
+ BOOL bRet = Compile();
if( bRet )
{
- bRet = Compile();
+ bRet = SbxObject::StoreData( rStrm );
if( bRet )
{
pImage->aSource = String();