summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/excel/xltools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/xltools.cxx')
-rw-r--r--sc/source/filter/excel/xltools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xltools.cxx b/sc/source/filter/excel/xltools.cxx
index f70ecfab5a9d..47030af38ddf 100644
--- a/sc/source/filter/excel/xltools.cxx
+++ b/sc/source/filter/excel/xltools.cxx
@@ -706,7 +706,7 @@ XclImpStream& operator>>( XclImpStream& rStrm, Color& rColor )
sal_uInt8 nG = rStrm.ReaduInt8();
sal_uInt8 nB = rStrm.ReaduInt8();
rStrm.Ignore( 1 );//nD
- rColor = RGB_COLORDATA( nR, nG, nB );
+ rColor = Color( nR, nG, nB );
return rStrm;
}