Note these two lines: On Sun, May 3, 2009 at 9:38 PM, David Scheidt <[email protected]> wrote: > #0 -[MyDocument makeWindowControllers] (self=0x10471d0, _cmd=0x9464d69c) at > #0 -[MyDocument makeWindowControllers] (self=0x105d5b0, _cmd=0x9464d69c) at
The self pointers are different (0x10471d0 vs. 0x105d5b0): you have two MyDocument instances, and -makeWindowControllers is being called on each instance. My guess is that you've accidentally added an instance of MyDocument to your nib. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
