diff options
author | Thomas Benisch <tbe@openoffice.org> | 2001-07-25 10:40:36 +0000 |
---|---|---|
committer | Thomas Benisch <tbe@openoffice.org> | 2001-07-25 10:40:36 +0000 |
commit | 9d24f2caad8c87a3ba65be278a6f5df783f4bb05 (patch) | |
tree | b6b7b438dce4ce80f3fe1692fe9d8525f4c31d01 | |
parent | bc65982cb5a75f14f6c5eb33b3e79d54c822c048 (diff) |
#88563# BasicIDE load on demand
-rw-r--r-- | basctl/inc/iderdll.hxx | 7 | ||||
-rw-r--r-- | basctl/source/basicide/iderdll.cxx | 5 |
2 files changed, 4 insertions, 8 deletions
diff --git a/basctl/inc/iderdll.hxx b/basctl/inc/iderdll.hxx index 95bfdaeec..c5d83a850 100644 --- a/basctl/inc/iderdll.hxx +++ b/basctl/inc/iderdll.hxx @@ -2,9 +2,9 @@ * * $RCSfile: iderdll.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: tbe $ $Date: 2001-07-25 08:41:52 $ + * last change: $Author: tbe $ $Date: 2001-07-25 11:39:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -64,13 +64,11 @@ class BasicIDEShell; class BasicIDEData; -class ResMgr; class BasicIDEDLL { friend class BasicIDEShell; - ResMgr* pResMgr; BasicIDEShell* pShell; BasicIDEData* pExtraData; @@ -78,7 +76,6 @@ public: BasicIDEDLL(); ~BasicIDEDLL(); - ResMgr* GetResMgr() const { return pResMgr; } BasicIDEShell* GetShell() const { return pShell; } BasicIDEData* GetExtraData(); static void Init(); diff --git a/basctl/source/basicide/iderdll.cxx b/basctl/source/basicide/iderdll.cxx index 408d4f2df..25c86b7f5 100644 --- a/basctl/source/basicide/iderdll.cxx +++ b/basctl/source/basicide/iderdll.cxx @@ -2,9 +2,9 @@ * * $RCSfile: iderdll.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mba $ $Date: 2001-07-20 10:49:36 $ + * last change: $Author: tbe $ $Date: 2001-07-25 11:40:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -143,7 +143,6 @@ BasicIDEDLL::BasicIDEDLL() BasicIDEDLL::~BasicIDEDLL() { - delete pResMgr; delete pExtraData; *(BasicIDEDLL**)GetAppData(SHL_IDE) = NULL; } |