[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Gorm bug (with patch)
From: |
Richard Frith-Macdonald |
Subject: |
Re: Gorm bug (with patch) |
Date: |
Sun, 28 Oct 2001 07:10:26 +0000 |
On Sunday, October 28, 2001, at 12:53 AM, Ludovic Marcotte wrote:
Hi,
Let's say you define two action of your responder class in Gorm:
testA
testB:
When you generate the source code and the header for this class, the
header will contain:
...
- (void) test: (id)sender;
- (void) testB: (id)sender;
...
and the source file:
...
- (void) testA: (id)sender
{
/* insert your code here */
}
- (void) testB:: (id)sender
{
/* insert your code here */
}
...
Which is wrong.
Thanks for the bug report ... I have fixed it in CVS.
Rather than applying your fix, I attached the more fundamental
problem of the code allowing inconsistent values to be entered -
it now validates/corrects the action name when you enter it.
- Gorm bug (with patch), Ludovic Marcotte, 2001/10/27
- Re: Gorm bug (with patch),
Richard Frith-Macdonald <=