diff options
-rw-r--r-- | svx/source/outliner/outlin2.cxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/svx/source/outliner/outlin2.cxx b/svx/source/outliner/outlin2.cxx index a50b2c94b000..8f8f1dfe104a 100644 --- a/svx/source/outliner/outlin2.cxx +++ b/svx/source/outliner/outlin2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: outlin2.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: mt $ $Date: 2001-05-14 15:28:15 $ + * last change: $Author: mt $ $Date: 2001-06-21 13:00:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -374,6 +374,18 @@ ULONG Outliner::GetControlWord() const return pEditEngine->GetControlWord(); } +void Outliner::SetAsianCompressionMode( EEAsianCompression n ) +{ + DBG_CHKTHIS(Outliner,0); + pEditEngine->SetAsianCompressionMode( n ); +} + +EEAsianCompression Outliner::GetAsianCompressionMode() const +{ + DBG_CHKTHIS(Outliner,0); + return pEditEngine->GetAsianCompressionMode(); +} + void Outliner::UndoActionStart( USHORT nId ) { DBG_CHKTHIS(Outliner,0); |