summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-11-26 10:24:42 +0000
committerThomas Lange <tl@openoffice.org>2002-11-26 10:24:42 +0000
commit5d8c40bc2e51ea3973df966cb312904f42c2a58c (patch)
tree31001019439bf12f7f1451aa1f043b8ec790296c /linguistic
parent3dcc79adb407499bd6ecd581c92efd84244d5bd1 (diff)
#103766# inteface extended to allow for modification of word / hyphenated word
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/inc/hyphdta.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/linguistic/inc/hyphdta.hxx b/linguistic/inc/hyphdta.hxx
index 75db6cb451c3..3ecb47ffe518 100644
--- a/linguistic/inc/hyphdta.hxx
+++ b/linguistic/inc/hyphdta.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: hyphdta.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: tl $ $Date: 2000-11-17 12:48:39 $
+ * last change: $Author: tl $ $Date: 2002-11-26 11:24:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,6 +122,13 @@ public:
virtual sal_Bool SAL_CALL
isAlternativeSpelling()
throw(::com::sun::star::uno::RuntimeException);
+
+ ::rtl::OUString GetWord() { return aWord; }
+ ::rtl::OUString GetHyphenatedWord() { return aHyphenatedWord; }
+ INT16 GetLanguage() { return nLanguage; }
+ void SetWord( ::rtl::OUString &rTxt ) { aWord = rTxt; }
+ void SetHyphenatedWord( ::rtl::OUString &rTxt ) { aHyphenatedWord = rTxt; }
+ void SetLanguage( INT16 nLang ) { nLanguage = nLang; }
};
@@ -161,6 +168,11 @@ public:
virtual ::com::sun::star::uno::Sequence< sal_Int16 > SAL_CALL
getHyphenationPositions()
throw(::com::sun::star::uno::RuntimeException);
+
+ ::rtl::OUString GetWord() { return aWord; }
+ INT16 GetLanguage() { return nLanguage; }
+ void SetWord( ::rtl::OUString &rTxt ) { aWord = rTxt; }
+ void SetLanguage( INT16 nLang ) { nLanguage = nLang; }
};