diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-17 14:04:23 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-17 14:04:23 +0000 |
commit | c23b1d1dc314e5762e6f1e51ce778bb2e3622190 (patch) | |
tree | 1e46bd22d41800d9aa1c20902b56d3c064819b51 /sw/source/ui/uiview | |
parent | 58621aa2d4d7675eb008be30318cd4bb4a7624ba (diff) |
INTEGRATION: CWS os19 (1.15.20); FILE MERGED
2004/09/14 07:46:05 os 1.15.20.5: #i18881# AddUnknownWords removed
2004/06/14 07:29:54 os 1.15.20.4: RESYNC: (1.16-1.17); FILE MERGED
2004/04/29 16:25:44 os 1.15.20.3: RESYNC: (1.15-1.16); FILE MERGED
2003/11/21 11:21:16 os 1.15.20.2: #i18881# AddUnknownWords() replaces SpellDocument()
2003/11/20 07:34:04 os 1.15.20.1: #18881# FN_SPELLING_DLG removed
Diffstat (limited to 'sw/source/ui/uiview')
-rw-r--r-- | sw/source/ui/uiview/viewling.cxx | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/sw/source/ui/uiview/viewling.cxx b/sw/source/ui/uiview/viewling.cxx index 2dee40c31595..8b6b8942ab77 100644 --- a/sw/source/ui/uiview/viewling.cxx +++ b/sw/source/ui/uiview/viewling.cxx @@ -2,9 +2,9 @@ * * $RCSfile: viewling.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: rt $ $Date: 2004-09-17 13:32:22 $ + * last change: $Author: rt $ $Date: 2004-09-17 15:04:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -120,7 +120,9 @@ #ifndef _SVX_THESDLG_HXX //autogen #include <svx/thesdlg.hxx> #endif - +#ifndef SVX_SPELL_PORTIONS_HXX +#include <svx/SpellPortions.hxx> +#endif #ifndef _SWMODULE_HXX #include <swmodule.hxx> #endif @@ -148,9 +150,6 @@ #ifndef _SWUNDO_HXX #include <swundo.hxx> // fuer Undo-Ids #endif -#ifndef _SPLWRP_HXX -#include <splwrp.hxx> // " -#endif #ifndef _HYP_HXX #include <hyp.hxx> // Trennung #endif @@ -182,6 +181,9 @@ #ifndef _HHCWRP_HXX #include <hhcwrp.hxx> #endif +#ifndef _COM_SUN_STAR_FRAME_XSTORABLE_HPP_ +#include <com/sun/star/frame/XStorable.hpp> +#endif #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/lang/XInitialization.hpp> @@ -206,9 +208,6 @@ void SwView::ExecLingu(SfxRequest &rReq) StartThesaurus(); rReq.Ignore(); break; - case FN_SPELLING_DLG: - SpellDocument( NULL, sal_False ); - break; case SID_HANGUL_HANJA_CONVERSION: StartTextConversion( LANGUAGE_KOREAN, LANGUAGE_KOREAN, NULL, 0, sal_True ); break; @@ -281,11 +280,6 @@ void SwView::ExecLingu(SfxRequest &rReq) } break; } - case FN_ADD_UNKNOWN: - { - SpellDocument( NULL, sal_True ); - } - break; case FN_HYPHENATE_OPT_DLG: HyphenateDocument(); break; |