1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-16 03:53:01 -05:00

The HI guidelines seem adamant that the File menu should never be called

anything but File, and two Mac users expressed profound distress at the
thought of it being called Session.  File it is.

[originally from svn r5229]
This commit is contained in:
Owen Dunn 2005-01-30 14:10:05 +00:00
parent a057db9fee
commit bb787c53fb
2 changed files with 9 additions and 8 deletions

View File

@ -895,12 +895,13 @@ resource 'MENU' (mApple, preload) {
resource 'MENU' (mFile, preload) { resource 'MENU' (mFile, preload) {
mFile, mFile,
textMenuProc, textMenuProc,
0b11111111111111111111111011110111, 0b11111111111111111111110111101011,
enabled, enabled,
"Session", "File",
{ {
"New", noicon, "N", nomark, plain, "New", noicon, "N", nomark, plain,
"Open\0xc9", noicon, "O", nomark, plain, "Open\0xc9", noicon, "O", nomark, plain,
"-", noicon, nokey, nomark, plain,
"Change Settings", noicon, nokey, nomark, plain, "Change Settings", noicon, nokey, nomark, plain,
"-", noicon, nokey, nomark, plain, "-", noicon, nokey, nomark, plain,
"Close", noicon, "W", nomark, plain, "Close", noicon, "W", nomark, plain,

View File

@ -27,12 +27,12 @@
/* File menu */ /* File menu */
#define iNew 1 #define iNew 1
#define iOpen 2 #define iOpen 2
#define iChange 3 #define iChange 4
#define iClose 5 #define iClose 6
#define iSave 6 #define iSave 7
#define iSaveAs 7 #define iSaveAs 8
#define iDuplicate 8 #define iDuplicate 9
#define iQuit 10 #define iQuit 11
/* Edit menu */ /* Edit menu */
#define iUndo 1 #define iUndo 1
#define iCut 3 #define iCut 3