From af8ca7b47de5dbaefe9c969000c76efe7d4e9f27 Mon Sep 17 00:00:00 2001 From: Oliver Specht Date: Wed, 19 Jun 2002 13:05:07 +0000 Subject: [PATCH] #100169# text direction only visible if CTL is supported --- sw/source/ui/frmdlg/column.cxx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx index c38a99938523..b91078ea7805 100644 --- a/sw/source/ui/frmdlg/column.cxx +++ b/sw/source/ui/frmdlg/column.cxx @@ -2,9 +2,9 @@ * * $RCSfile: column.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: os $ $Date: 2002-06-19 13:59:00 $ + * last change: $Author: os $ $Date: 2002-06-19 14:05:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -83,6 +83,9 @@ #ifndef _SVX_FRMDIRITEM_HXX #include "svx/frmdiritem.hxx" #endif +#ifndef _SVTOOLS_LANGUAGEOPTIONS_HXX +#include +#endif #include "globals.hrc" #include "swtypes.hxx" @@ -1363,6 +1366,10 @@ void SwColumnPage::SetFrmMode(BOOL bMod) ---------------------------------------------------------------------------*/ void SwColumnPage::SetInSection(BOOL bSet) { + SvtLanguageOptions aLangOptions; + if(!aLangOptions.IsCTLFontEnabled()) + return; + aVertFL.Show(bSet); aPropertiesFL.Show(bSet); aTextDirectionFT.Show(bSet);