diff options
author | Niklas Nebel <nn@openoffice.org> | 2001-05-14 18:09:36 +0000 |
---|---|---|
committer | Niklas Nebel <nn@openoffice.org> | 2001-05-14 18:09:36 +0000 |
commit | 196ce43ab661f2c7994f698e2acc51ff0738b816 (patch) | |
tree | acece9fbd11f5f82b3abad562aa3ba0d7f0716d0 /sc/source/ui/optdlg | |
parent | e0020549dd0d312aad3af9c21abb1df5d936a72f (diff) |
#86985# configuration flag for use of printer metrics
Diffstat (limited to 'sc/source/ui/optdlg')
-rw-r--r-- | sc/source/ui/optdlg/tpview.cxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/sc/source/ui/optdlg/tpview.cxx b/sc/source/ui/optdlg/tpview.cxx index 37fbdd257..b13752821 100644 --- a/sc/source/ui/optdlg/tpview.cxx +++ b/sc/source/ui/optdlg/tpview.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tpview.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: dr $ $Date: 2001-05-10 17:30:43 $ + * last change: $Author: nn $ $Date: 2001-05-14 19:07:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -471,6 +471,7 @@ ScTpLayoutOptions::ScTpLayoutOptions( Window* pParent, aFormatCB( this, ResId( CB_FORMAT )), aExpRefCB( this, ResId( CB_EXPREF )), aMarkHdrCB( this, ResId( CB_MARKHDR )), + aTextFmtCB( this, ResId( CB_TEXTFMT )), aUnitArr( ResId(ST_UNIT )), pDoc(NULL) { @@ -605,6 +606,13 @@ BOOL ScTpLayoutOptions::FillItemSet( SfxItemSet& rCoreSet ) rCoreSet.Put(SfxBoolItem(SID_SC_INPUT_MARK_HEADER, aMarkHdrCB.IsChecked())); bRet = TRUE; } + + if(aTextFmtCB.GetSavedValue() != aTextFmtCB.IsChecked()) + { + rCoreSet.Put(SfxBoolItem(SID_SC_INPUT_TEXTWYSIWYG, aTextFmtCB.IsChecked())); + bRet = TRUE; + } + return bRet; } /*-----------------11.01.97 10.53------------------- @@ -677,6 +685,9 @@ void ScTpLayoutOptions::Reset( const SfxItemSet& rCoreSet ) if(SFX_ITEM_SET == rCoreSet.GetItemState(SID_SC_INPUT_MARK_HEADER, FALSE, &pItem)) aMarkHdrCB.Check(((const SfxBoolItem*)pItem)->GetValue()); + if(SFX_ITEM_SET == rCoreSet.GetItemState(SID_SC_INPUT_TEXTWYSIWYG, FALSE, &pItem)) + aTextFmtCB.Check(((const SfxBoolItem*)pItem)->GetValue()); + aAlignCB .SaveValue(); aAlignLB .SaveValue(); aEditModeCB .SaveValue(); @@ -684,6 +695,7 @@ void ScTpLayoutOptions::Reset( const SfxItemSet& rCoreSet ) aExpRefCB .SaveValue(); aMarkHdrCB .SaveValue(); + aTextFmtCB .SaveValue(); AlignHdl(&aAlignCB); aAlwaysRB.SaveValue(); |