I moved the source code over to 10.4 and Xcode 2.0 and I'm trying to build it.
I receive the following errors and build stops.
Source/AIMessageTabView.m:55: error: wrong type argument to unary minus
Source/AIMessageTabView.m:55: error: parse error before ':' token
Here is the code from at line 55 that seems to be generating the error.
- (void)displayTopTabs:(BOOL)value
{
displayTopTabs = value; //the next time we are told to draw, we will only draw our top tabs (if YES)
}
I moved the source back to 10.3.9 and it builds without any problems.
In 10.4 I've set the target to 10.3, selected the 10.3.9 SDK but it still gives this error.
Anyone know how to fix this?
As a side question, how do I get XCode to use gcc 3.3 instead of gcc 4.0?
-- Dale