From 2dccee05bc52e732b951599c6d60928861ece8cf Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Wed, 3 Feb 2010 01:39:32 -0300 Subject: [PATCH] Fixed: CPWindow setFrame:display: failed with an "unrecognized selector" exception. --- AppKit/CPWindow/CPWindow.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPWindow/CPWindow.j b/AppKit/CPWindow/CPWindow.j index 84fff9816..68def85a8 100644 --- a/AppKit/CPWindow/CPWindow.j +++ b/AppKit/CPWindow/CPWindow.j @@ -692,7 +692,7 @@ CPTexturedBackgroundWindowMask - (void)setFrame:(CGRect)aFrame display:(BOOL)shouldDisplay { - [super setFrame:aFrame display:shouldDisplay animate:NO]; + [self setFrame:aFrame display:shouldDisplay animate:NO]; } /*!