diff options
| author | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2007-01-04 19:24:43 +0000 |
|---|---|---|
| committer | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2007-01-04 19:24:43 +0000 |
| commit | 7c59e7259f6e39e8254815afbc252e2bd4c15c97 (patch) | |
| tree | c60f68ab7df898a38ffc108b8d2e54328be97887 /windows.c | |
| parent | 14ed4e9b1ec29fce49e68d08955fdcec9909e6cf (diff) | |
| download | puzzles-7c59e7259f6e39e8254815afbc252e2bd4c15c97.zip puzzles-7c59e7259f6e39e8254815afbc252e2bd4c15c97.tar.gz puzzles-7c59e7259f6e39e8254815afbc252e2bd4c15c97.tar.bz2 puzzles-7c59e7259f6e39e8254815afbc252e2bd4c15c97.tar.xz | |
In Windows/Gtk front-ends, consistently use the ellipsis convention for naming
menu items which bring up dialogs.
[originally from svn r7058]
Diffstat (limited to 'windows.c')
| -rw-r--r-- | windows.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1355,11 +1355,11 @@ static frontend *new_window(HINSTANCE inst, char *game_id, char **error) } AppendMenu(menu, MF_SEPARATOR, 0, 0); - AppendMenu(menu, MF_ENABLED, IDM_LOAD, "Load"); - AppendMenu(menu, MF_ENABLED, IDM_SAVE, "Save"); + AppendMenu(menu, MF_ENABLED, IDM_LOAD, "Load..."); + AppendMenu(menu, MF_ENABLED, IDM_SAVE, "Save..."); AppendMenu(menu, MF_SEPARATOR, 0, 0); if (thegame.can_print) { - AppendMenu(menu, MF_ENABLED, IDM_PRINT, "Print"); + AppendMenu(menu, MF_ENABLED, IDM_PRINT, "Print..."); AppendMenu(menu, MF_SEPARATOR, 0, 0); } AppendMenu(menu, MF_ENABLED, IDM_UNDO, "Undo"); |