Author: espectador
Date: Sun Aug  3 09:16:41 2014
New Revision: 38024

URL: http://svn.gna.org/viewcvs/gnustep?rev=38024&view=rev
Log:
Fix problem with FindPanel.

Modified:
    apps/projectcenter/trunk/ChangeLog
    apps/projectcenter/trunk/Modules/Editors/ProjectCenter/PCEditor.m

Modified: apps/projectcenter/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/ChangeLog?rev=38024&r1=38023&r2=38024&view=diff
==============================================================================
--- apps/projectcenter/trunk/ChangeLog  (original)
+++ apps/projectcenter/trunk/ChangeLog  Sun Aug  3 09:16:41 2014
@@ -1,3 +1,8 @@
+2014-08-03 German Arias <[email protected]>
+
+       * Modules/Editors/ProjectCenter/PCEditor.m: Don't use
+       PCAuxiliaryWindow. This avoid the use of FindPanel.
+
 2014-07-30 Riccardo Mottola <[email protected]>
 
        * Framework/PCEditorManager.m

Modified: apps/projectcenter/trunk/Modules/Editors/ProjectCenter/PCEditor.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/Modules/Editors/ProjectCenter/PCEditor.m?rev=38024&r1=38023&r2=38024&view=diff
==============================================================================
--- apps/projectcenter/trunk/Modules/Editors/ProjectCenter/PCEditor.m   
(original)
+++ apps/projectcenter/trunk/Modules/Editors/ProjectCenter/PCEditor.m   Sun Aug 
 3 09:16:41 2014
@@ -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];


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to