removed the 2 popups, which are not needed on the top right side

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7913 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Robert Slover 2000-10-27 17:15:34 +00:00
parent f353be74cb
commit 4f8cf5f17c
2 changed files with 1 additions and 23 deletions

View file

@ -93,9 +93,6 @@ static NSString * const PCLibraryVar = @"LIBRARY_VAR";
id textView;
id filePopup;
id methodPopup;
id projectAttributeInspectorView;
NSTextField *installPathField;
NSTextField *toolField;

View file

@ -65,7 +65,7 @@
projectWindow = [[NSWindow alloc] initWithContentRect:_w_frame
styleMask:style
backing:NSBackingStoreBuffered
defer:NO];
defer:YES];
[projectWindow setDelegate:self];
[projectWindow setMinSize:NSMakeSize(512,320)];
@ -162,22 +162,6 @@
[button setImage:IMAGE(@"ProjectCentre_find.tiff")];
[button setButtonType:NSMomentaryPushButton];
/*
* Navigation popups
*/
filePopup = [[[NSPopUpButton alloc] initWithFrame:NSMakeRect(348,334,200,20)
pullsDown:YES] autorelease];
[filePopup addItemWithTitle:@"Visited files..."];
[filePopup setAutoresizingMask: (NSViewWidthSizable | NSViewMinYMargin)];
[_c_view addSubview:filePopup];
methodPopup = [[[NSPopUpButton alloc] initWithFrame:NSMakeRect(348,310,200,20)
pullsDown:YES] autorelease];
[methodPopup addItemWithTitle:@"All methods"];
[methodPopup setAutoresizingMask: (NSViewWidthSizable | NSViewMinYMargin)];
[_c_view addSubview:methodPopup];
/*
* Build Options Panel
*
@ -425,9 +409,6 @@
[projectPath release];
[projectDict release];
[filePopup release];
[methodPopup release];
[browserController release];
[projectWindow release];
[buildTargetPanel release];