diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-03-09 13:04:05 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-03-09 13:04:05 +0000 |
commit | 7af441be236bf20cf18e5aacfe720dfc23484260 (patch) | |
tree | 3a5bb6c0e477122ed268961189923c5454094be9 /sw/inc/doc.hxx | |
parent | b0220dcd3f068377b75e43f5852fe332c1cad13c (diff) |
INTEGRATION: CWS rowkeep (1.112.138); FILE MERGED
2006/02/17 15:05:43 fme 1.112.138.1: #131283# Table rows can keep together
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 292d7401810c..271885e688e8 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -4,9 +4,9 @@ * * $RCSfile: doc.hxx,v $ * - * $Revision: 1.112 $ + * $Revision: 1.113 $ * - * last change: $Author: rt $ $Date: 2005-11-08 17:11:58 $ + * last change: $Author: rt $ $Date: 2006-03-09 14:04:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -529,6 +529,9 @@ class SwDoc // bIgnoreFirstLineIndentInNumbering def = FALSE, hidden // bDoNotJustifyLinesWithManualBreak def = FALSE, hidden // bDoNotResetParaAttrsForNumFont def = FALSE, hidden + // + // SO8pp3: + // bTableRowKeep def = FALSE, hidden sal_Bool bOldLineSpacing : 1; // OD 2004-01-06 #i11859# sal_Bool bAddParaSpacingToTableCells : 1; // OD 2004-02-16 #106629# @@ -539,11 +542,13 @@ class SwDoc // the floating screen objects as given by its attribute 'WrapInfluenceOnObjPos' // non-ui-compatibility flags: - sal_Bool bOldNumbering : 1; // HBRINKM #111955# + sal_Bool bOldNumbering : 1; // HBRINKM #111955# sal_Bool bIgnoreFirstLineIndentInNumbering: 1; // FME 2005-05-30 #i47448# sal_Bool bDoNotJustifyLinesWithManualBreak: 1; // FME 2005-06-08 #i49277# sal_Bool bDoNotResetParaAttrsForNumFont : 1; // FME 2005-08-11 #i53199# - sal_Bool bDummyNonUIFlag : 1; // use this if necessary + sal_Bool bTableRowKeep : 1; // FME 2006-02-10 #131283# + sal_Bool bDummyNonUIFlag1 : 1; // use this if necessary + sal_Bool bDummyNonUIFlag2 : 1; // use this if necessary sal_Bool bOutlineLevelYieldsOutlineRule : 1; @@ -2290,6 +2295,17 @@ public: } // <-- + // --> FME 2006-02-10 #131283# + inline sal_Bool IsTableRowKeep() const + { + return bTableRowKeep; + } + inline void SetTableRowKeep( const sal_Bool _bTableRowKeep ) + { + bTableRowKeep = _bTableRowKeep; + } + // <-- + // // DOCUMENT COMPATIBILITY FLAGS END // |