mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-20 09:30:59 +00:00
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:
parent
f353be74cb
commit
4f8cf5f17c
2 changed files with 1 additions and 23 deletions
|
@ -93,9 +93,6 @@ static NSString * const PCLibraryVar = @"LIBRARY_VAR";
|
|||
|
||||
id textView;
|
||||
|
||||
id filePopup;
|
||||
id methodPopup;
|
||||
|
||||
id projectAttributeInspectorView;
|
||||
NSTextField *installPathField;
|
||||
NSTextField *toolField;
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue