summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-10 09:42:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-10 12:49:49 +0100
commitf597ebe353f4505e2874c428c2a9487c51000836 (patch)
treeff38af3c24546668e3ff11439885afe31d6e9116 /sc
parent4dab0197957e4329cc92f9cd60e01739cf60aa41 (diff)
update unused code list
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/stylesbuffer.hxx2
-rw-r--r--sc/source/filter/oox/stylesbuffer.cxx5
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/source/filter/inc/stylesbuffer.hxx b/sc/source/filter/inc/stylesbuffer.hxx
index 07f2a7ad8d47..01ce04970cb2 100644
--- a/sc/source/filter/inc/stylesbuffer.hxx
+++ b/sc/source/filter/inc/stylesbuffer.hxx
@@ -124,8 +124,6 @@ public:
/** Imports an 8-bit or 16-bit palette color identifier from the passed BIFF stream. */
void importColorId( BiffInputStream& rStrm, bool b16Bit = true );
- /** Imports a 32-bit RGBA color value from the passed BIFF stream. */
- void importColorRgb( BiffInputStream& rStrm );
/** Returns true, if the color is set to automatic. */
inline bool isAuto() const { return isPlaceHolder(); }
diff --git a/sc/source/filter/oox/stylesbuffer.cxx b/sc/source/filter/oox/stylesbuffer.cxx
index 4624a9d0a168..57486c2226a9 100644
--- a/sc/source/filter/oox/stylesbuffer.cxx
+++ b/sc/source/filter/oox/stylesbuffer.cxx
@@ -444,11 +444,6 @@ void Color::importColorId( BiffInputStream& rStrm, bool b16Bit )
setIndexed( b16Bit ? rStrm.readuInt16() : rStrm.readuInt8() );
}
-void Color::importColorRgb( BiffInputStream& rStrm )
-{
- setRgb( lclReadRgbColor( rStrm ) );
-}
-
SequenceInputStream& operator>>( SequenceInputStream& rStrm, Color& orColor )
{
orColor.importColor( rStrm );