CVS: ----------------------------------------------------------------------
CVS: Enter Log. Lines beginning with `CVS:' are removed automatically
CVS:
CVS: Committing in .
CVS:
CVS: Modified Files:
CVS: fv_View.cpp
CVS: ----------------------------------------------------------------------
fix infinite recursive call
I'm assuming this is supposed to call the other setTableFormat.
bool FV_View::setTableFormat(const XML_Char * properties[])
{
PT_DocPosition pos = getPoint();
- return setTableFormat(properties);
+ return setTableFormat(pos, properties);
}
bool FV_View::setTableFormat(PT_DocPosition pos, const XML_Char * properties[])