diff options
Diffstat (limited to 'basctl/source/inc/dlgedfac.hxx')
-rw-r--r-- | basctl/source/inc/dlgedfac.hxx | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/basctl/source/inc/dlgedfac.hxx b/basctl/source/inc/dlgedfac.hxx index e5d4c79dd17c..cee51ab9a63f 100644 --- a/basctl/source/inc/dlgedfac.hxx +++ b/basctl/source/inc/dlgedfac.hxx @@ -2,9 +2,9 @@ * * $RCSfile: dlgedfac.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: tbe $ $Date: 2001-02-26 10:53:39 $ + * last change: $Author: tbe $ $Date: 2001-03-23 16:08:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,28 +59,24 @@ * ************************************************************************/ + #ifndef _BASCTL_DLGEDFAC_HXX #define _BASCTL_DLGEDFAC_HXX +#ifndef _SVDOBJ_HXX +#include <svx/svdobj.hxx> +#endif + + //============================================================================ -// VCDlgEditFactory +// DlgEdFactory //============================================================================ -class SdrObjFactory; -class StarBASIC; -class VCDlgEditor; - -class VCDlgEditFactory /* : public LinkHdl */ +class DlgEdFactory { -protected: - Link aOldMakeObjLink; - VCDlgEditor* pDlgEditor; - public: - VCDlgEditFactory( VCDlgEditor* pDlgEd ); - - void SetOldMakeObjHdl( const Link& rLink ) { aOldMakeObjLink = rLink; } - Link GetOldMakeObjHdl() const { return aOldMakeObjLink; } + DlgEdFactory(); + ~DlgEdFactory(); DECL_LINK( MakeObject, SdrObjFactory * ); }; |