diff options
author | Oliver Specht <os@openoffice.org> | 2000-11-13 07:38:04 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2000-11-13 07:38:04 +0000 |
commit | 2426577c118f86343bfef926c607be76717717cf (patch) | |
tree | 310e0c498d1d1cf35f9db9b621854304e7553f98 | |
parent | 97d312b65520d04ac96ac7b7ea76528be93b8098 (diff) |
SwGetExpField::PutValue: call SwValueField::SetValue to prevent updating
-rw-r--r-- | sw/source/core/fields/expfld.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/fields/expfld.cxx b/sw/source/core/fields/expfld.cxx index 0404152cd372..2e7b3cb2230c 100644 --- a/sw/source/core/fields/expfld.cxx +++ b/sw/source/core/fields/expfld.cxx @@ -2,9 +2,9 @@ * * $RCSfile: expfld.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: os $ $Date: 2000-11-08 12:45:24 $ + * last change: $Author: os $ $Date: 2000-11-13 08:38:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -519,7 +519,7 @@ BOOL SwGetExpField::PutValue( const uno::Any& rAny, const String& rProperty ) { if( rProperty.EqualsAscii( UNO_NAME_VALUE )) { - SetValue(*(double*) rAny.getValue()); + SwValueField::SetValue(*(double*) rAny.getValue()); } else if( rProperty.EqualsAscii( UNO_NAME_NUMBER_FORMAT )) { |