I found out why my compile wasn't working. It's a bug in UIC. It says any
extra data for vardata is passed directly to esp. It's trying to interpert
the \ character. It removed the \ from the end of the line. Without the \, this:
ATTR_GEN_CONTROL_PROHIBIT_UI {
GECFeatures mask GECF_CUT or mask GECF_COPY or mask GECF_UNDO \
or mask GECF_PASTE or mask GECF_SELECT_ALL
}
became:
ATTR_GEN_CONTROL_PROHIBIT_UI {
GECFeatures mask GECF_CUT or mask GECF_COPY or mask GECF_UNDO
or mask GECF_PASTE or mask GECF_SELECT_ALL
}
Which gets treated by Esp as two seperate statements instead of one, which
caused the error. As Joerg Polzfusz suggested, the error was way off. It was
in line 1330, but Esp complained at 1919.
Now I'm getting wierder errors. It's complaining that the size assurtions
are failing for the gen size of this object:
GenChildHints = GenItemGroup {
moniker = "Children Orientation Hints";
children = GenChildHintsHoriz, GenChildHintsVert, GenChildHintsLarger;
destination = process;
applyMsg = MSG_GEN_CHILD_HINTS_CHANGED;
hints = {
ATTR_GEN_ITEM_GROUP_SET_MODIFIED_ON_REDUNDANT_SELECTION,
HINT_ITEM_GROUP_MINIMIZE_SIZE,
HINT_EXPAND_WIDTH_TO_FIT_PARENT
}
}
What's wrong with it that it's generating an invalid GenInstance ? I'm
looking and can't find any errors anywhere in between the last one and this
one, or anything that could be misinterperted. Esp is wierd...
BTW, anyone successful in getting the handles sample app on geoworks' web
site to compile? I think it was missing some includes. Few million errors,
didn't make it past the depend.
------------------------------------------------------------------------
| Does your crotch hurt when you puke? |
| -Jared Lautz (Email him your answer at jarlau@bergen.org) |
------------------------------------------------------------------------
| Edward Di Geronimo Jr. edwdig@bergen.org |
------------------------------------------------------------------------