OSDN Git Service

Match "about" dialogue caption to main window.
authorKeith Marshall <keithmarshall@users.sourceforge.net>
Tue, 30 Jul 2013 15:57:13 +0000 (16:57 +0100)
committerKeith Marshall <keithmarshall@users.sourceforge.net>
Tue, 30 Jul 2013 15:57:13 +0000 (16:57 +0100)
ChangeLog
src/guimain.rc

index 207d3f7..a8e664d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2013-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
+       Match "about" dialogue caption to main window.
+
+       * src/guimain.rc (IDM_HELP_ABOUT) <MENUITEM>: Match it to...
+       (IDD_HELP_ABOUT) <CAPTION>: ...this; make it representative of...
+       (ID_MAIN_WINDOW_CAPTION): ...this.
+
+2013-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
        Implement "icon legend" display as "help" menu item.
 
        * src/guimain.rc (IDM_HELP_LEGEND): Make menu item active; define
index b468363..3813569 100644 (file)
@@ -50,7 +50,7 @@ ID_MAIN_WINDOW        ICON    DISCARDABLE     "pkgicon.ico"
  * which is called out by the "Help --> About mingw-get" menu pick.
  */
 IDD_HELP_ABOUT DIALOG  DISCARDABLE     80, 50, 250, 185
-CAPTION                                        "About mingw-get"
+CAPTION                                "About MinGW Installation Manager"
 STYLE                                  DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_DLGFRAME
 FONT                                   9, "Verdana"
 BEGIN
@@ -121,10 +121,10 @@ BEGIN
    */
   POPUP        "&Help",                                HELP
   BEGIN
-    MENUITEM   "&Contents",                            IDM_HELP_CONTENTS, GRAYED
-    MENUITEM   "Quick &Introduction",                  IDM_HELP_INTRO, GRAYED
-    MENUITEM   "Icon &Legend",                         IDM_HELP_LEGEND
-    MENUITEM   "&About mingw-get",                     IDM_HELP_ABOUT
+    MENUITEM     "&Contents",                          IDM_HELP_CONTENTS, GRAYED
+    MENUITEM     "Quick &Introduction",                IDM_HELP_INTRO, GRAYED
+    MENUITEM     "Icon &Legend",                       IDM_HELP_LEGEND
+    MENUITEM     "&About MinGW Installation Manager",  IDM_HELP_ABOUT
   END
 
 END