[Libreoffice-commits] .: basic/inc
Joseph Powers
jpowers at kemper.freedesktop.org
Tue Dec 14 20:29:45 PST 2010
basic/inc/basic/mybasic.hxx | 14 ++++++++++++++
1 file changed, 14 insertions(+)
New commits:
commit 005b548d0cf18aeb350f598435b02a2e749b0cff
Author: Joseph Powers <jpowers27 at cox.net>
Date: Tue Dec 14 20:29:40 2010 -0800
revert previous patch
It seems that the global header is before the local header. So you need
to do change, deliver, build to test.
diff --git a/basic/inc/basic/mybasic.hxx b/basic/inc/basic/mybasic.hxx
index 327bb8d..a004f64 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* );
More information about the Libreoffice-commits
mailing list