diff options
author | Malte Timmermann <mt@openoffice.org> | 2001-02-23 13:02:48 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2001-02-23 13:02:48 +0000 |
commit | e4e1532eeeee2143c9192753b68406b71d42504e (patch) | |
tree | fd67355b44270cd4fda76c96dcc6879854d0419a | |
parent | f50b87327aba6d6186702c8c9b927ce6412182a6 (diff) |
Transliteration
-rw-r--r-- | svx/source/outliner/outlvw.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/svx/source/outliner/outlvw.cxx b/svx/source/outliner/outlvw.cxx index 86cd9ea0909f..ec93c9b1e6de 100644 --- a/svx/source/outliner/outlvw.cxx +++ b/svx/source/outliner/outlvw.cxx @@ -2,9 +2,9 @@ * * $RCSfile: outlvw.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: aw $ $Date: 2001-01-19 15:58:10 $ + * last change: $Author: mt $ $Date: 2001-02-23 14:02:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1798,6 +1798,13 @@ USHORT OutlinerView::StartSearchAndReplace( const SvxSearchItem& rSearchItem ) return pEditView->StartSearchAndReplace( rSearchItem ); } +void OutlinerView::TransliterateText( sal_Int32 nTransliterationMode ) +{ + DBG_CHKTHIS(OutlinerView,0); + pEditView->TransliterateText( nTransliterationMode ); +} + + ESelection OutlinerView::GetSelection() { |