persistence.mod broken?

BlitzMax Forums/Brucey's Modules/persistence.mod broken?

xlsior(Posted 2008) [#1]
After downloading the latest SVN stuff, I am getting a compilation error on the bah.mod/persistence.mod module:

Compiling:persistence.bmx
Compile Error: Identifier 'ArrayDimensions' not found
[c:/code/blitzmax/mod/bah.mod/persistence.mod/persistence.bmx;299;9]
Build Error: failed to compile c:/code/blitzmax/mod/bah.mod/persistence.mod/persistence.bmx


Has the persistence module itself updated, or did one of the BRL updates break it? (There have been a lot of changes on the BRL side in SVN the last couple of days, it seems)


Brucey(Posted 2008) [#2]
Ah... it currently requires this version of the BRL.Reflection module to compile properly (which has added support for multi-dimensional arrays).

Apologies, but hopefully BRL will be catching up soon.. ;-)


xlsior(Posted 2008) [#3]
wxpropgrid is also failing now, with errors:


c:/code/blitzmax/mod/wx.mod/wxpropgrid.mod/src/editors.cpp: In member function `wxWindow* wxPropertyGrid::GenerateEditorButton(const wxPoint&, const wxSize&)':
c:/code/blitzmax/mod/wx.mod/wxpropgrid.mod/src/editors.cpp:2056: error: `wxS' was not declared in this scope
Build Error: failed to compile c:/code/blitzmax/mod/wx.mod/wxpropgrid.mod/src/ed
itors.cpp



I assume that's something similar?


Brucey(Posted 2008) [#4]
wxpropgrid is also failing now

There are more current headers/libs than you appear to be using.

You want to update to this :
http://code.google.com/p/wxmax/downloads/detail?name=wxwidgets_2.8.8_headers.zip

and one of these :
http://code.google.com/p/wxmax/downloads/list?q=static

HTH.


xlsior(Posted 2008) [#5]
It looks like like that did the trick -- I think I was using 2.8.7 before.

Thanks!