summaryrefslogtreecommitdiff
path: root/sw/source/core/graphic
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-09-18 12:38:08 +0000
committerThomas Lange <tl@openoffice.org>2002-09-18 12:38:08 +0000
commit4298a11ff1a10d750a66d40fc353c167b77f1df6 (patch)
treeab99e1cfe92916b49327905d7263533461d537dc /sw/source/core/graphic
parentb3b9c3d18f01dfebf9dca9e917882fe6caa03ad6 (diff)
#102987# SwTransparencyGrf::Put/QueryValue fixed
Diffstat (limited to 'sw/source/core/graphic')
-rw-r--r--sw/source/core/graphic/grfatr.cxx26
1 files changed, 9 insertions, 17 deletions
diff --git a/sw/source/core/graphic/grfatr.cxx b/sw/source/core/graphic/grfatr.cxx
index 749c65ec1303..aa4a14eb7b9c 100644
--- a/sw/source/core/graphic/grfatr.cxx
+++ b/sw/source/core/graphic/grfatr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: grfatr.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mba $ $Date: 2002-05-27 14:34:13 $
+ * last change: $Author: tl $ $Date: 2002-09-18 13:38:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -371,18 +371,8 @@ BOOL SwTransparencyGrf::QueryValue( com::sun::star::uno::Any& rVal,
{
DBG_ASSERT(ISA(SfxByteItem),"Put/QueryValue should be removed!")
sal_Int16 nRet = GetValue();
- //convert from 0...255 to -100 ... +100
- nRet -= 128;
- if(nRet >= 0 )
- {
- nRet = nRet * 100 / 127;
- }
- else
- {
- nRet = nRet * 100 / 128;
- }
+ DBG_ASSERT( 0 <= nRet && nRet <= 100, "value out of range" );
rVal <<= nRet;
-
return TRUE;
}
// ------------------------------------------------------------------
@@ -394,11 +384,13 @@ BOOL SwTransparencyGrf::PutValue( const com::sun::star::uno::Any& rVal,
sal_Int16 nVal;
if(!(rVal >>= nVal) || nVal < -100 || nVal > 100)
return FALSE;
- if(nVal >= 0)
- nVal = nVal * 127 / 100;
- else
+ if(nVal < 0)
+ {
+ // for compatibility with old documents
nVal = nVal * 128 / 100;
- nVal += 128;
+ nVal += 128;
+ }
+ DBG_ASSERT( 0 <= nVal && nVal <= 100, "value out of range" );
SetValue(nVal);
return TRUE;
}