mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-14 06:31:31 +00:00
Disabling unused menu entries and some spelling corrections
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/RELEASE_0_3_5@17179 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f10b31b9f2
commit
19b89600cc
4 changed files with 13 additions and 4 deletions
2
ANNOUNCE
2
ANNOUNCE
|
@ -30,7 +30,7 @@ information regarding GNUstep resources <http://www.gnustep.org/>
|
|||
Where can you get it? How can you compile it?
|
||||
==============================================
|
||||
|
||||
You can download sources and rpms (for some machines) from
|
||||
You can download the sources from
|
||||
ftp://ftp.gnustep.org/pub/gnustep/dev-apps/.
|
||||
|
||||
Where do I send bug reports?
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
|
||||
2003-07-10 Philippe C.D. Robert <probert@siggraph.org>
|
||||
|
||||
* Disabled unused menu entries: ProjectCenter_main.m
|
||||
* Some spelling corrections: PCMenuController.m
|
||||
|
||||
2003-07-05 Philippe C.D. Robert <probert@siggraph.org>
|
||||
|
||||
* Uppercase key for interface category lookup: PCFileManager.m
|
||||
|
|
|
@ -426,7 +426,7 @@
|
|||
- (void)fileOpenQuickly:(id)sender
|
||||
{
|
||||
NSRunAlertPanel(@"PCMenuController: Sorry!",
|
||||
@"This feature not finished yet",
|
||||
@"This feature is not finished yet",
|
||||
@"OK",nil,nil);
|
||||
}
|
||||
|
||||
|
@ -439,14 +439,14 @@
|
|||
[projectManager renameFileTo:proj];*/
|
||||
|
||||
NSRunAlertPanel(@"PCMenuController: Sorry!",
|
||||
@"This feature not finished yet",
|
||||
@"This feature is not finished yet",
|
||||
@"OK",nil,nil);
|
||||
}
|
||||
|
||||
- (void)fileNewUntitled:(id)sender
|
||||
{
|
||||
NSRunAlertPanel(@"PCMenuController: Sorry!",
|
||||
@"This feature not finished yet",
|
||||
@"This feature is not finished yet",
|
||||
@"OK",nil,nil);
|
||||
}
|
||||
|
||||
|
|
|
@ -62,7 +62,9 @@ createMenu()
|
|||
#endif
|
||||
|
||||
NSMenu *file;
|
||||
#ifdef ENABLE_ALL_FILE_OPERATIONS
|
||||
NSMenu *file_view;
|
||||
#endif
|
||||
|
||||
NSMenu *edit;
|
||||
NSMenu *edit_find;
|
||||
|
@ -204,6 +206,7 @@ createMenu()
|
|||
[file addItemWithTitle:@"Close"
|
||||
action:@selector(fileClose:)
|
||||
keyEquivalent:@"W"];
|
||||
#ifdef ENABLE_ALL_FILE_OPERATIONS
|
||||
[file addItemWithTitle:@"View"
|
||||
action:action
|
||||
keyEquivalent:@""];
|
||||
|
@ -229,6 +232,7 @@ createMenu()
|
|||
[file_view addItemWithTitle:@"Tear Off"
|
||||
action:action
|
||||
keyEquivalent:@"T"];
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Edit submenu
|
||||
|
|
Loading…
Reference in a new issue