Fix problem with FindPanel.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38024 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2014-08-03 07:16:41 +00:00
parent ffb201e9cb
commit 7fc6faaddc
2 changed files with 9 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2014-08-03 German Arias <germanandre@gmx.es>
* Modules/Editors/ProjectCenter/PCEditor.m: Don't use
PCAuxiliaryWindow. This avoid the use of FindPanel.
2014-07-30 Riccardo Mottola <rm@gnu.org>
* Framework/PCEditorManager.m

View file

@ -24,8 +24,6 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#import <ProjectCenter/PCAuxiliaryWindow.h>
#import "PCEditor.h"
#import "PCEditorView.h"
@ -50,10 +48,10 @@
windowWidth += 35;
rect = NSMakeRect(0,0,windowWidth,320);
_window = [[PCAuxiliaryWindow alloc] initWithContentRect:rect
styleMask:style
backing:NSBackingStoreBuffered
defer:YES];
_window = [[NSWindow alloc] initWithContentRect:rect
styleMask:style
backing:NSBackingStoreBuffered
defer:YES];
[_window setReleasedWhenClosed:NO];
[_window setMinSize:NSMakeSize(512,320)];
[_window setDelegate:self];