From f5d23f8aa48eadf36e9d88f96965a1f5e130794f Mon Sep 17 00:00:00 2001 From: nico Date: Fri, 3 Mar 2000 02:22:11 +0000 Subject: [PATCH] Added two macosx methods with trivial implementation to avoid crash git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6162 72102866-910b-0410-8b05-ffd578937521 --- Source/NSWindow.m | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Source/NSWindow.m b/Source/NSWindow.m index e33057540..715cfb0fc 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -2776,6 +2776,17 @@ resetCursorRectsForView(NSView *theView) (int)sRect.size.width, (int)sRect.size.height]; } +- (void) performZoom: (id)sender +{ + NSLog (@"[NSWindow performZoom:] not implemented yet"); +} + +- (void) zoom: (id)sender +{ + NSLog (@"[NSWindow zoom:] not implemented yet"); +} + + /* * Printing and postscript */