diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:10:28 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-02-26 12:10:28 +0000 |
commit | eb342d9bcb49098ab8463a3d68927a22f1e63fcc (patch) | |
tree | d4cdf63a2089735b971256561cdd08217cb72e87 /sw/source/ui/misc/pggrid.cxx | |
parent | f9d6d5f9be84e113915544d636d8cf492b8174f3 (diff) |
INTEGRATION: CWS sb13 (1.8.390); FILE MERGED
2004/02/06 08:52:24 sb 1.8.390.1: #i19699# Adapted to tightened tools/string.hxx (patch supplied by tono).
Diffstat (limited to 'sw/source/ui/misc/pggrid.cxx')
-rw-r--r-- | sw/source/ui/misc/pggrid.cxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sw/source/ui/misc/pggrid.cxx b/sw/source/ui/misc/pggrid.cxx index 845547f27dd3..8b8af018b69b 100644 --- a/sw/source/ui/misc/pggrid.cxx +++ b/sw/source/ui/misc/pggrid.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pggrid.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2004-02-03 16:46:33 $ + * last change: $Author: kz $ $Date: 2004-02-26 13:10:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -214,10 +214,12 @@ BOOL SwTextGridPage::FillItemSet(SfxItemSet &rSet) BOOL bRet = FALSE; if(aNoGridRB.GetSavedValue() != aNoGridRB.IsChecked()|| aLinesGridRB.GetSavedValue() != aLinesGridRB.IsChecked()|| - aLinesPerPageNF.GetSavedValue() != aLinesPerPageNF.GetValue()|| - aTextSizeMF.GetSavedValue() != aTextSizeMF.GetValue()|| - aCharsPerLineNF.GetSavedValue() != aCharsPerLineNF.GetValue()|| - aRubySizeMF.GetSavedValue() != aRubySizeMF.GetValue()|| + aLinesPerPageNF.GetSavedValue().ToInt32() + != aLinesPerPageNF.GetValue()|| + aTextSizeMF.GetSavedValue().ToInt32() != aTextSizeMF.GetValue()|| + aCharsPerLineNF.GetSavedValue().ToInt32() + != aCharsPerLineNF.GetValue()|| + aRubySizeMF.GetSavedValue().ToInt32() != aRubySizeMF.GetValue()|| aRubyBelowCB.GetSavedValue() != aRubyBelowCB.IsChecked()|| aDisplayCB.GetSavedValue() != aDisplayCB.IsChecked()|| aPrintCB.GetSavedValue() != aPrintCB.IsChecked()|| |