[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[GDL2][COMMIT] EOFault: fixed initialization of cached class variable
From:
David Ayers
Subject:
[GDL2][COMMIT] EOFault: fixed initialization of cached class variable
Date:
2003年5月08日 13:53:19 +0200
User-agent:
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4a) Gecko/20030401
Hi,
This fixes a major obvious bug I previously introduced when adding the
caching mechanism. I don't quite understand how it stayed unnoticed. I
need to spend more time rounding up these tests....
* EOControl/EOFault.m ([EOFault +initialize]): Fix initialization
of cached class variable.
Commited,
Cheers,
Dave
Index: EOControl/EOFault.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/dev-libs/gdl2/EOControl/EOFault.m,v
retrieving revision 1.11
diff -u -r1.11 EOFault.m
--- EOControl/EOFault.m 31 Mar 2003 16:02:46 -0000 1.11
+++ EOControl/EOFault.m 8 May 2003 11:54:21 -0000
@@ -75,7 +75,7 @@
// without asking if it responds to it !
if (EOFaultClass == NULL)
{
- EOFaultClass = [EOFaultClass class];
+ EOFaultClass = [EOFault class];
}
}
[Prev in Thread]
Current Thread
[Next in Thread]
- [GDL2][COMMIT] EOFault: fixed initialization of cached class variable,
David Ayers <=