diff options
author | Malte Timmermann <mt@openoffice.org> | 2001-03-09 17:09:26 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2001-03-09 17:09:26 +0000 |
commit | c4899f5b7cfa67616d4f41b708d7f7920d67ff60 (patch) | |
tree | 1a358420a36035556e10ef91e397623dad857e1b | |
parent | 0f7c7f70a30b1bc719de401a2f632ee7f7984ab8 (diff) |
dummy comment (ask HR)
-rw-r--r-- | svx/source/editeng/eerdll2.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/svx/source/editeng/eerdll2.hxx b/svx/source/editeng/eerdll2.hxx index b810a235fe4c..825c86549d80 100644 --- a/svx/source/editeng/eerdll2.hxx +++ b/svx/source/editeng/eerdll2.hxx @@ -2,9 +2,9 @@ * * $RCSfile: eerdll2.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:01:14 $ + * last change: $Author: mt $ $Date: 2001-03-09 18:09:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,6 +62,9 @@ #ifndef _EERDLL2_HXX #define _EERDLL2_HXX +#include <forbiddencharacterstable.hxx> +#include <vos/ref.hxx> + class SfxPoolItem; class SvxAutoCorrect; @@ -73,6 +76,8 @@ private: Link aGetAutoCorrectHdl; + vos::ORef<SvxForbiddenCharactersTable> xForbiddenCharsTable; + public: GlobalEditData(); ~GlobalEditData(); @@ -82,6 +87,9 @@ public: void SetGetAutoCorrectHdl( const Link& rHdl ) { aGetAutoCorrectHdl = rHdl; } SvxAutoCorrect* GetAutoCorrect() const { return (SvxAutoCorrect*) aGetAutoCorrectHdl.Call( NULL ); } + + vos::ORef<SvxForbiddenCharactersTable> GetForbiddenCharsTable(); + void SetForbiddenCharsTable( vos::ORef<SvxForbiddenCharactersTable> xForbiddenChars ) { xForbiddenCharsTable = xForbiddenChars; } }; |