diff options
author | Joseph Powers <jpowers27@cox.net> | 2010-12-14 20:29:40 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2010-12-14 20:29:40 -0800 |
commit | d020028d46d78fe1cf3496bf0184df46759cb97c (patch) | |
tree | b6c8a60a00a7a65d9448764621d97db8cf964b0d /basic/inc | |
parent | 22451b3449af32e44efa798db00537d7485ada77 (diff) |
revert previous patch
It seems that the global header is before the local header. So you need
to do change, deliver, build to test.
Diffstat (limited to 'basic/inc')
-rw-r--r-- | basic/inc/basic/mybasic.hxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/basic/inc/basic/mybasic.hxx b/basic/inc/basic/mybasic.hxx index 70a42156a42a..2f520253a6b3 100644 --- a/basic/inc/basic/mybasic.hxx +++ b/basic/inc/basic/mybasic.hxx @@ -31,7 +31,20 @@ #include <basic/sbstar.hxx> +class BasicApp; class AppBasEd; +class ErrorEntry; + +class BasicError { + AppBasEd* pWin; + USHORT nLine, nCol1, nCol2; + String aText; +public: + BasicError( AppBasEd*, USHORT, const String&, USHORT, USHORT, USHORT ); + void Show(); +}; + +DECLARE_LIST( ErrorList, BasicError* ) #define SBXID_MYBASIC 0x594D // MyBasic: MY #define SBXCR_TEST 0x54534554 // TEST @@ -55,6 +68,7 @@ protected: public: SBX_DECL_PERSIST_NODATA(SBXCR_TEST,SBXID_MYBASIC,1); TYPEINFO(); + ErrorList aErrors; MyBasic(); virtual ~MyBasic(); virtual BOOL Compile( SbModule* ); |