diff options
author | Malte Timmermann <mt@openoffice.org> | 2001-06-21 12:00:58 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2001-06-21 12:00:58 +0000 |
commit | 3fc7fcaf3e4ab6e150111c20861e721c5d956d20 (patch) | |
tree | 2a2f0ae054e8476bf6c74482587aadfb0046aece /svx/source/outliner/outlin2.cxx | |
parent | 7260b56e2329c22453c2f2e3853eb8205825d63b (diff) |
#87795# Implementation for asian compression
Diffstat (limited to 'svx/source/outliner/outlin2.cxx')
-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); |