diff options
author | Sascha Ballach <sab@openoffice.org> | 2002-05-03 12:16:03 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2002-05-03 12:16:03 +0000 |
commit | 60173b1d78e8a8503717c6e91c364390f1b285e3 (patch) | |
tree | 4a61bb047ea4ed0c486e294179110a4273ed084a | |
parent | b55df6372f65547eb99b6438e291294f216b1282 (diff) |
#99079#; add also circle objects
-rw-r--r-- | sc/source/filter/xml/XMLExportIterator.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/source/filter/xml/XMLExportIterator.cxx b/sc/source/filter/xml/XMLExportIterator.cxx index e861f731b8b1..0c38e2fe704a 100644 --- a/sc/source/filter/xml/XMLExportIterator.cxx +++ b/sc/source/filter/xml/XMLExportIterator.cxx @@ -2,9 +2,9 @@ * * $RCSfile: XMLExportIterator.cxx,v $ * - * $Revision: 1.33 $ + * $Revision: 1.34 $ * - * last change: $Author: sab $ $Date: 2002-04-12 08:15:43 $ + * last change: $Author: sab $ $Date: 2002-05-03 13:16:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -444,7 +444,8 @@ void ScMyDetectiveObjContainer::AddObject( ScDetectiveObjType eObjType, const Sc { if( (eObjType == SC_DETOBJ_ARROW) || (eObjType == SC_DETOBJ_FROMOTHERTAB) || - (eObjType == SC_DETOBJ_TOOTHERTAB) ) + (eObjType == SC_DETOBJ_TOOTHERTAB) || + (eObjType == SC_DETOBJ_CIRCLE) ) { ScMyDetectiveObj aDetObj; aDetObj.eObjType = eObjType; |