]> cygwin.com Git - cygwin-apps/setup.git/commitdiff
* splash.cc (load_dialog): Make message more obvious. cygwin-1-1-6
authorDJ Delorie <dj@redhat.com>
Fri, 17 Nov 2000 22:45:09 +0000 (22:45 +0000)
committerDJ Delorie <dj@redhat.com>
Fri, 17 Nov 2000 22:45:09 +0000 (22:45 +0000)
* res.rc: Ditto.

ChangeLog
res.rc
splash.cc

index 1d080e52225166f02bb13fbe4528df04361e8282..4c05fba616139caecc1e23f7bccc7fd1f37e3920 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-17  DJ Delorie  <dj@redhat.com>
+
+       * splash.cc (load_dialog): Make message more obvious.
+       * res.rc: Ditto.
+
 Fri Nov 17 17:15:21 2000  Christopher Faylor <cgf@cygnus.com>
 
        * Makefile.in: Use g++ to link so that libstdc++.a gets used.  This is
diff --git a/res.rc b/res.rc
index be210f0a142445d53dae4025efc879bfb50eaab9..f7d5bfd2ef24090e43d9beed97dfa3886e9bb71a 100644 (file)
--- a/res.rc
+++ b/res.rc
@@ -213,7 +213,7 @@ BEGIN
     ICON            IDI_CYGWIN,IDC_STATIC,5,5,20,20
     LTEXT           "Cygwin Net Release Setup Program",IDC_STATIC,55,10,114,
                     8
-    LTEXT           "Version (unknown)",IDC_VERSION,55,20,120,10
+    LTEXT           "Version (unknown)",IDC_VERSION,55,25,120,10
     LTEXT           "Copyright (C) 2000 Red Hat Inc",IDC_STATIC,55,35,135,8
     LTEXT           "http://sources.redhat.com/cygwin/",IDC_STATIC,55,50,150,
                     10
index 87e6907cf65c00b63ed9bcabb1e8b0b98a7c730d..d44d536dea119bb0f527c17a9b613ed902935c7f 100644 (file)
--- a/splash.cc
+++ b/splash.cc
@@ -30,7 +30,8 @@ load_dialog (HWND h)
 {
   char buffer[100];
   HANDLE v = GetDlgItem (h, IDC_VERSION);
-  sprintf (buffer, "Version %s", version[0] ? version : "[unknown]");
+  sprintf (buffer, "Setup.exe version %s",
+          version[0] ? version : "[unknown]");
   SetWindowText (v, buffer);
 }
 
This page took 0.034369 seconds and 5 git commands to generate.