well i did my devel on MAC Xcode and juce 1.40 now i’m trying to compile this on windows.
The first error is that when doing a release build VC6 gives me an INTERNAL COMPILER ERROR on a line like that
panel[id]->setState (getFilter()->panels[x]);
where panel[id] is a Component (GUI) getFilter() is the method to get the base filter pointer, and the panels[x] is a array of stuctures defined as
struct _panel panels[16];
on MAC that code runs perfectly.
when i do a DEBUG build, it builds (weird?) but gives me all kinds of erros with that line, i tried doing
panels[id]->setStateGUI ();
since the panels component holds the pointer to the filer also, i made a method to acces it from there not from the parent component.
Is there like a problem with VC6, will VCExpress help ? perhaps i’m doing something terribly wrong (like accessing the fitler from GUI components like that).