summaryrefslogtreecommitdiff
path: root/sw/inc/tgrditem.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2002-02-07 14:13:30 +0000
committerOliver Specht <os@openoffice.org>2002-02-07 14:13:30 +0000
commit001c700c5764b236b75b7ed5a6f3a3b45ae6f76b (patch)
tree6d9b85e93cd55c42450c312e5ff2cd037c8c0854 /sw/inc/tgrditem.hxx
parent7267810ccdaafa24d2570f89dce3f394939aac11 (diff)
#96678# BOOL inline methods added as Is...()
Diffstat (limited to 'sw/inc/tgrditem.hxx')
-rw-r--r--sw/inc/tgrditem.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/sw/inc/tgrditem.hxx b/sw/inc/tgrditem.hxx
index e6b576b2a561..413490a0a508 100644
--- a/sw/inc/tgrditem.hxx
+++ b/sw/inc/tgrditem.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tgrditem.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: fme $ $Date: 2002-02-06 16:04:40 $
+ * last change: $Author: os $ $Date: 2002-02-07 15:13:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -121,12 +121,15 @@ public:
SwTextGrid GetGridType() const { return eGridType; }
void SetGridType( SwTextGrid eNew ) { eGridType = eNew; }
+ BOOL IsRubyTextBelow() const { return bRubyTextBelow; }
BOOL GetRubyTextBelow() const { return bRubyTextBelow; }
void SetRubyTextBelow( BOOL bNew ) { bRubyTextBelow = bNew; }
+ BOOL IsPrintGrid() const { return bPrintGrid; }
BOOL GetPrintGrid() const { return bPrintGrid; }
void SetPrintGrid( BOOL bNew ) { bPrintGrid = bNew; }
+ BOOL IsDisplayGrid() const { return bDisplayGrid; }
BOOL GetDisplayGrid() const { return bDisplayGrid; }
void SetDisplayGrid( BOOL bNew ) { bDisplayGrid = bNew; }
};