Removed Project Languages option on Inspector panel

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31648 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2010-11-24 06:34:02 +00:00
parent 77f710f67e
commit 07308c6ccf
4 changed files with 9 additions and 10 deletions

View file

@ -1,3 +1,9 @@
2010-11-24 German Arias <german@xelalug.org>
* Headers/ProjectCenter/PCProjectInspector.h:
* Framework/PCProjectInspector.m:
* Framework/English.lproj/ProjectInspector.gorm:
Removed "Project Languages" option on Inspector.
2010-11-23 Riccardo Mottola
* Framework/PCFileManager.m:

View file

@ -86,7 +86,6 @@
RELEASE(projectAttributesSubview);
RELEASE(projectAttributesView);
RELEASE(projectDescriptionView);
RELEASE(projectLanguagesView);
RELEASE(fileAttributesView);
RELEASE(inspectorPanel);
@ -125,9 +124,6 @@
// Project Description
[self createProjectDescription];
// Project Languages
[self createProjectLanguages];
// File Attributes
[self createFileAttributes];
@ -174,9 +170,6 @@
[inspectorView setContentView:projectDescriptionView];
break;
case 3:
[inspectorView setContentView:projectLanguagesView];
break;
case 4:
[inspectorView setContentView:fileAttributesView];
break;
}
@ -698,7 +691,7 @@
// ==== Project Languages
// ============================================================================
- (void)createProjectLanguages
/*- (void)createProjectLanguages
{
if (projectLanguagesView)
{
@ -712,7 +705,7 @@
}
[projectLanguagesView retain];
}
}*/
// ============================================================================
// ==== File Attributes

View file

@ -89,7 +89,7 @@
IBOutlet NSButton *authorDown;
// Project Languages
IBOutlet NSBox *projectLanguagesView;
//IBOutlet NSBox *projectLanguagesView;
// File Attributes
IBOutlet NSBox *fileAttributesView;