summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-02-21 19:47:21 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-02-21 19:47:21 +0000
commitf05fb061805699b0cb121562af4d3db7dcb12254 (patch)
treee7ce228af7e7b0c31faa827764df5790494c6588
parent5fbb4c4c83bfcf19f5291da06a3f9f5496cfc400 (diff)
- fixed: ruby attribute
-rw-r--r--sw/source/core/txtnode/fmtatr2.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/txtnode/fmtatr2.cxx b/sw/source/core/txtnode/fmtatr2.cxx
index e2d3635d754f..00f5a717317c 100644
--- a/sw/source/core/txtnode/fmtatr2.cxx
+++ b/sw/source/core/txtnode/fmtatr2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fmtatr2.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: os $ $Date: 2001-02-19 08:05:21 $
+ * last change: $Author: dvo $ $Date: 2001-02-21 20:47:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -537,7 +537,7 @@ BOOL SwFmtRuby::PutValue( const com::sun::star::uno::Any& rVal,
case MID_RUBY_ADJUST:
{
sal_Int16 nSet; rVal >>= nSet;
- if(nSet >= 0 && nSet < com::sun::star::text::RubyAdjust_INDENT_BLOCK)
+ if(nSet >= 0 && nSet <= com::sun::star::text::RubyAdjust_INDENT_BLOCK)
nAdjustment = nSet;
else
bRet = sal_False;