Revert "OSX PowerPC - gets it compiling and linking again but doesn't work -"

This reverts commit f16ec700a952e8c8b0f3444bec2aa94b2383fb78.
This commit is contained in:
twinaphex 2018-08-31 19:19:27 +02:00
parent e2a650cb26
commit 91145e02c6

View File

@ -346,14 +346,12 @@ static char** waiting_argv;
}
_renderView.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
_renderView.frame = self.window.contentView.bounds;
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
_renderView.frame = self.window.contentView.bounds;
self.window.contentView = _renderView;
[self.window.contentView setNextResponder:_listener];
#else
/* TODO/FIXME - Aussiebloke - we need a workaround for OSX 10.5 for self.window.contentView.bounds -
* error - request for member 'bounds' in something not a structure or union. */
[self.window.contentView addSubview:_renderView];
[self.window makeFirstResponder:_renderView];
#endif