diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-05-03 13:35:42 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-05-03 13:35:42 +0000 |
commit | 5c50b6bdbbb878fd23dce66a704c415f6cee16ae (patch) | |
tree | 5eca101f29c86beed4b8d5419c56a47cf41e6966 /sw | |
parent | 74bfe7916be72ca54292dbf1dff7963cb5584db8 (diff) |
#75825# Set a boolean to decide whether to show the auto text edit frame
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/inc/glosdoc.hxx | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/sw/source/ui/inc/glosdoc.hxx b/sw/source/ui/inc/glosdoc.hxx index 9eb9ab72ac74..4f2597ff82bc 100644 --- a/sw/source/ui/inc/glosdoc.hxx +++ b/sw/source/ui/inc/glosdoc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: glosdoc.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:14:40 $ + * last change: $Author: mtg $ $Date: 2001-05-03 14:35:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,6 +66,7 @@ #include <tools/string.hxx> #endif + #ifndef _SVARRAY_HXX //autogen #include <svtools/svarray.hxx> #endif @@ -75,6 +76,15 @@ class SwTextBlocks; class SvStrings; +class SwDocShell; + +#ifndef SW_DECL_SWDOCSHELL_DEFINED +#define SW_DECL_SWDOCSHELL_DEFINED +#ifndef _REF_HXX +#include <tools/ref.hxx> +#endif +SV_DECL_REF( SwDocShell ) +#endif typedef com::sun::star::uno::Reference<com::sun::star::text::XAutoTextGroup>* XAutoTextGroupPtr; SV_DECL_PTRARR_DEL(XAutoTextGroupPtrArr, XAutoTextGroupPtr, 4, 4) @@ -121,7 +131,7 @@ public: BOOL NewGroupDoc(String &rGroupName, const String& rTitle); BOOL RenameGroupDoc(const String& sOldGroup, String& sNewGroup, const String& rNewTitle); BOOL DelGroupDoc(const String &); - void EditGroupDoc(const String &rGrpName, const String& rShortName ); + SwDocShellRef* EditGroupDoc(const String &rGrpName, const String& rShortName, BOOL bShow = TRUE ); void SaveGroupDoc(const String &rGrpName, const String& rLongName ); void UpdateGlosPath(BOOL bFull); void ShowError(); @@ -129,4 +139,5 @@ public: const SvStrings* GetPathArray() const {return pPathArr;} }; + #endif // _GLOSDOC_HXX |