summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-11-19 21:09:21 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-11-20 11:54:06 +0000
commit8aa7394dfbffcadd3aa528544027af801ad3d4b6 (patch)
tree96ee9e70f8eb6cbf618acbed1a6b009ebc2d2510 /tools
parent742da70e6dd2407641835cbcac54b09aeddcb9db (diff)
don't warn on Color streaming missing Solar Version
Change-Id: I47e6a21fde77028c7a717b095883497888806501
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/color.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/source/generic/color.cxx b/tools/source/generic/color.cxx
index e85cf9d0b9a8..7692d011d611 100644
--- a/tools/source/generic/color.cxx
+++ b/tools/source/generic/color.cxx
@@ -243,8 +243,6 @@ OUString Color::AsRGBHexString() const
SvStream& ReadColor( SvStream& rIStream, Color& rColor )
{
- SAL_WARN_IF( !rIStream.GetVersion(), "tools", "Color::>> - Solar-Version not set on rIStream" );
-
sal_uInt16 nColorName;
rIStream.ReadUInt16( nColorName );
@@ -335,8 +333,6 @@ void Color::ApplyTintOrShade(sal_Int16 n100thPercent)
SvStream& WriteColor( SvStream& rOStream, const Color& rColor )
{
- SAL_WARN_IF( !rOStream.GetVersion(), "tools", "Color::<< - Solar-Version not set on rOStream" );
-
sal_uInt16 nColorName = COL_NAME_USER;
sal_uInt16 nRed = rColor.GetRed();
sal_uInt16 nGreen = rColor.GetGreen();