diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-07-23 11:05:11 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-07-23 11:05:11 +0000 |
commit | 4df2dfd20372a4b57f2d4854d04a52e05c333f04 (patch) | |
tree | 98e80cffb8d262c6f1289866b1635e0030686990 | |
parent | d0b0d8c181a20850ba68927908733475266ab94b (diff) |
INTEGRATION: CWS tbe11 (1.2.226); FILE MERGED
2004/07/15 17:50:48 tbe 1.2.226.1: #i31315# Rework Basic IDE Macro Chooser and Macro Organizer
-rw-r--r-- | basctl/source/basicide/iderdll2.hxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/basctl/source/basicide/iderdll2.hxx b/basctl/source/basicide/iderdll2.hxx index fb69b2d53490..061e6f1b76c7 100644 --- a/basctl/source/basicide/iderdll2.hxx +++ b/basctl/source/basicide/iderdll2.hxx @@ -2,9 +2,9 @@ * * $RCSfile: iderdll2.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tbe $ $Date: 2001-09-11 15:40:15 $ + * last change: $Author: kz $ $Date: 2004-07-23 12:05:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -79,6 +79,7 @@ class Accelerator; #endif #include <bastypes.hxx> +#include <bastype2.hxx> #define INVPOSITION 0x7fff @@ -90,7 +91,7 @@ private: LibInfos aLibInfos; - String TheLastMacroInMacroDlg; + BasicEntryDescriptor m_aLastEntryDesc; Point aObjCatPos; Size aObjCatSize; @@ -115,7 +116,9 @@ public: LibInfos& GetLibInfos() { return aLibInfos; } - String& GetLastMacro() { return TheLastMacroInMacroDlg; } + BasicEntryDescriptor& GetLastEntryDescriptor() { return m_aLastEntryDesc; } + void SetLastEntryDescriptor( BasicEntryDescriptor& rDesc ) { m_aLastEntryDesc = rDesc; } + BOOL& ChoosingMacro() { return bChoosingMacro; } BOOL& ShellInCriticalSection() { return bShellInCriticalSection; } |