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 | c8a56afbf70e886de7ceb8af53aa28be57042df8 (patch) | |
tree | c5b8f695d2c7dc446153a3e4982de5b263bf88f6 | |
parent | f3a1181ddb327c057c70302d222f9d678c8736ea (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 576ebc7fb4ef..a34a19c1eef2 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 d3a03aedb3b7..3578f84c6e09 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; } |