diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2003-08-19 10:56:04 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2003-08-19 10:56:04 +0000 |
commit | 080b47ed7765e3616ceecaafb39bc99dc8a38f46 (patch) | |
tree | 07541a573dad6c5d968740c84128f0e1e5ffe686 /sw/inc/doc.hxx | |
parent | 3c960358018b655eaa9c92a027b966b0e4da2a60 (diff) |
INTEGRATION: CWS os13 (1.46.14); FILE MERGED
2003/07/10 10:04:45 os 1.46.14.1: #110689# call of SetModified() added
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index bfa977667c74..8f4c72b7cfb3 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: doc.hxx,v $ * - * $Revision: 1.46 $ + * $Revision: 1.47 $ * - * last change: $Author: vg $ $Date: 2003-07-04 13:18:46 $ + * last change: $Author: hjs $ $Date: 2003-08-19 11:56:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1923,12 +1923,14 @@ public: { if( bNew ) n8Dummy1 |= DUMMY_PARASPACEMAX; else n8Dummy1 &= ~DUMMY_PARASPACEMAX; if( bAtPages ) n8Dummy1 |= DUMMY_PARASPACEMAX_AT_PAGES; else n8Dummy1 &= ~DUMMY_PARASPACEMAX_AT_PAGES; + SetModified(); } sal_Bool IsTabCompat() const { return n8Dummy1 & DUMMY_TAB_COMPAT; } void SetTabCompat( sal_Bool bNew ) { if( bNew ) n8Dummy1 |= DUMMY_TAB_COMPAT; else n8Dummy1 &= ~DUMMY_TAB_COMPAT; + SetModified(); } sal_Bool IsUseVirtualDevice() const { return n8Dummy1 & DUMMY_USE_VIRTUAL_DEVICE; } |