aboutsummaryrefslogtreecommitdiff
path: root/windows.c
diff options
context:
space:
mode:
authorJacob Nevins <jacobn@chiark.greenend.org.uk>2007-01-04 19:24:43 +0000
committerJacob Nevins <jacobn@chiark.greenend.org.uk>2007-01-04 19:24:43 +0000
commit7c59e7259f6e39e8254815afbc252e2bd4c15c97 (patch)
treec60f68ab7df898a38ffc108b8d2e54328be97887 /windows.c
parent14ed4e9b1ec29fce49e68d08955fdcec9909e6cf (diff)
downloadpuzzles-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/windows.c b/windows.c
index 0185f01..b8eef2f 100644
--- a/windows.c
+++ b/windows.c
@@ -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");