diff options
author | Joseph Powers <jpowers27@cox.net> | 2010-12-13 05:59:23 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2010-12-14 18:30:03 -0800 |
commit | 22451b3449af32e44efa798db00537d7485ada77 (patch) | |
tree | 461972733b766adf425bc8efec87518c55dcf395 /basic | |
parent | f44b8e5fd1045add2d32b2aac43ff64ac6a1744c (diff) |
Remove DECLARE_LIST( ErrorList, BasicError* )
It seems that the ErrorList was never used.
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/basic/mybasic.hxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/basic/inc/basic/mybasic.hxx b/basic/inc/basic/mybasic.hxx index 2f520253a6b3..70a42156a42a 100644 --- a/basic/inc/basic/mybasic.hxx +++ b/basic/inc/basic/mybasic.hxx @@ -31,20 +31,7 @@ #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 @@ -68,7 +55,6 @@ protected: public: SBX_DECL_PERSIST_NODATA(SBXCR_TEST,SBXID_MYBASIC,1); TYPEINFO(); - ErrorList aErrors; MyBasic(); virtual ~MyBasic(); virtual BOOL Compile( SbModule* ); |