summaryrefslogtreecommitdiff
path: root/svx/source/items
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2002-07-03 09:03:39 +0000
committerOliver Specht <os@openoffice.org>2002-07-03 09:03:39 +0000
commitc987e4948e6797db3d3a4d4b675bf39a66ab5897 (patch)
tree96edc8678aff1e15d30a8d8eec7d722a4e9958cd /svx/source/items
parentb06ba7765b61bb82a9ec8d01dd8c1f5f51e409c1 (diff)
#99814# auto color exported as black in binary file format
Diffstat (limited to 'svx/source/items')
-rw-r--r--svx/source/items/numitem.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/items/numitem.cxx b/svx/source/items/numitem.cxx
index 948dbc45aae4..24c7c0fefb6d 100644
--- a/svx/source/items/numitem.cxx
+++ b/svx/source/items/numitem.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: numitem.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: hr $ $Date: 2001-10-17 13:44:30 $
+ * last change: $Author: os $ $Date: 2002-07-03 10:03:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -389,7 +389,7 @@ SvStream& SvxNumberFormat::Store(SvStream &rStream, FontToSubsFontConverter pC
rStream << (USHORT)0;
rStream << aGraphicSize;
- rStream << nBulletColor;
+ rStream << (nBulletColor == COL_AUTO ? COL_BLACK : nBulletColor);
rStream << nBulletRelSize;
rStream << (USHORT)IsShowSymbol();
return rStream;