mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
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:
parent
ffb201e9cb
commit
7fc6faaddc
2 changed files with 9 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue