From a741a1ad45e96bb9548bb7d7892c2e21da546d59 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Tue, 3 Feb 2004 11:12:39 +0000 Subject: [PATCH] INTEGRATION: CWS calcrtl (1.19.82); FILE MERGED 2004/01/13 12:47:12 sab 1.19.82.2: RESYNC: (1.19-1.21); FILE MERGED 2003/06/30 17:13:09 nn 1.19.82.1: #106948# table flag for RTL layout --- sc/inc/table.hxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index cd5e2a837097..7389f5bf1cac 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -2,9 +2,9 @@ * * $RCSfile: table.hxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: vg $ $Date: 2004-01-06 18:52:59 $ + * last change: $Author: hr $ $Date: 2004-02-03 12:12:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -125,6 +125,7 @@ private: String aName; String aComment; BOOL bScenario; + BOOL bLayoutRTL; String aLinkDoc; String aLinkFlt; @@ -220,6 +221,9 @@ public: BOOL IsVisible() const { return bVisible; } void SetVisible( BOOL bVis ); + BOOL IsLayoutRTL() const { return bLayoutRTL; } + void SetLayoutRTL( BOOL bSet ); + BOOL IsScenario() const { return bScenario; } void SetScenario( BOOL bFlag ); void GetScenarioComment( String& rComment) const { rComment = aComment; }