diff options
author | Noel Power <noel.power@suse.com> | 2013-05-27 19:56:26 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-05-27 19:56:26 +0100 |
commit | fa19934a04118a1060e696710bfff3a0c9585b29 (patch) | |
tree | 5cbec2c65e1f81d52e402aaf40010245d2aad052 /sc | |
parent | 0c9533603392bd2646aed89b878f8761f217fb7a (diff) |
remove commented out ( duplicated ) RgbToRgbComponents method
bah, added that, found a name clash, commented it out ( forgot to remove it )
Change-Id: I99b09b7745963afc477524eb6713cfdf71fc7730
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/condformatbuffer.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sc/source/filter/oox/condformatbuffer.cxx b/sc/source/filter/oox/condformatbuffer.cxx index 70a8b65279f9..763ad96a6c46 100644 --- a/sc/source/filter/oox/condformatbuffer.cxx +++ b/sc/source/filter/oox/condformatbuffer.cxx @@ -1089,16 +1089,6 @@ CondFormatRef CondFormatBuffer::createCondFormat() maCondFormats.push_back( xCondFmt ); return xCondFmt; } -/* -::Color RgbToRgbComponents( sal_Int32 nRgb ) -{ - sal_Int32 ornR = (nRgb >> 16) & 0xFF; - sal_Int32 ornG = (nRgb >> 8) & 0xFF; - sal_Int32 ornB = nRgb & 0xFF; - - return ::Color(ornR, ornG, ornB); -} -*/ void ExtCfRule::finalizeImport() { |