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> 2014-07-30 Riccardo Mottola <rm@gnu.org>
* Framework/PCEditorManager.m * Framework/PCEditorManager.m

View file

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