Skip to content
Snippets Groups Projects
Commit 1c969d53 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

typo OS

parent 31b87f07
No related branches found
No related tags found
No related merge requests found
// $Id: GetOptions.cpp,v 1.27 2001-06-25 13:12:50 geuzaine Exp $ // $Id: GetOptions.cpp,v 1.28 2001-06-29 07:27:16 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "GmshUI.h" #include "GmshUI.h"
...@@ -18,14 +18,14 @@ char *TheBgmFileName=NULL; ...@@ -18,14 +18,14 @@ char *TheBgmFileName=NULL;
char gmsh_progname[] = "This is Gmsh" ; char gmsh_progname[] = "This is Gmsh" ;
char gmsh_copyright[] = "Copyright (C) 1997-2001 Jean-Francois Remacle and Christophe Geuzaine"; char gmsh_copyright[] = "Copyright (C) 1997-2001 Jean-Francois Remacle and Christophe Geuzaine";
char gmsh_version[] = "Version : " ; char gmsh_version[] = "Version : " ;
char gmsh_os[] = "Operating system : " GMSH_OS ; char gmsh_os[] = "Build OS : " GMSH_OS ;
char gmsh_gui[] = "GUI toolkit : " ; char gmsh_gui[] = "GUI toolkit : " ;
char gmsh_date[] = "Build date : " GMSH_DATE ; char gmsh_date[] = "Build date : " GMSH_DATE ;
char gmsh_host[] = "Build host : " GMSH_HOST ; char gmsh_host[] = "Build host : " GMSH_HOST ;
char gmsh_packager[] = "Packager : " GMSH_PACKAGER ; char gmsh_packager[] = "Packager : " GMSH_PACKAGER ;
char gmsh_url[] = "Web site : http://www.geuz.org/gmsh/" ; char gmsh_url[] = "Web site : http://www.geuz.org/gmsh/" ;
char gmsh_email[] = "Mailing list : gmsh@geuz.org" ; char gmsh_email[] = "Mailing list : gmsh@geuz.org" ;
void Print_Usage(char *name){ void Print_Usage(char *name){
Msg(DIRECT, "Usage: %s [options] [files]", name); Msg(DIRECT, "Usage: %s [options] [files]", name);
......
// $Id: GUI.cpp,v 1.86 2001-06-27 06:49:35 geuzaine Exp $ // $Id: GUI.cpp,v 1.87 2001-06-29 07:27:16 geuzaine Exp $
// To make the interface as visually consistent as possible, please: // To make the interface as visually consistent as possible, please:
// - use the BH, BW, WB, IW values for button heights/widths, window borders, etc. // - use the BH, BW, WB, IW values for button heights/widths, window borders, etc.
...@@ -1838,7 +1838,7 @@ void GUI::create_about_window(){ ...@@ -1838,7 +1838,7 @@ void GUI::create_about_window(){
o->add(""); o->add("");
sprintf(buffer, "@c@.Version: %.2f", GMSH_VERSION); o->add(buffer); sprintf(buffer, "@c@.Version: %.2f", GMSH_VERSION); o->add(buffer);
sprintf(buffer, "@c@.Build date: %s", GMSH_DATE); o->add(buffer); sprintf(buffer, "@c@.Build date: %s", GMSH_DATE); o->add(buffer);
sprintf(buffer, "@c@.Operating system: %s", GMSH_OS); o->add(buffer); sprintf(buffer, "@c@.Build OS: %s", GMSH_OS); o->add(buffer);
sprintf(buffer, "@c@.Graphical user interface toolkit: FLTK %d.%d.%d", sprintf(buffer, "@c@.Graphical user interface toolkit: FLTK %d.%d.%d",
FL_MAJOR_VERSION, FL_MINOR_VERSION, FL_PATCH_VERSION); o->add(buffer); FL_MAJOR_VERSION, FL_MINOR_VERSION, FL_PATCH_VERSION); o->add(buffer);
sprintf(buffer, "@c@.Build host: %s", GMSH_HOST); o->add(buffer); sprintf(buffer, "@c@.Build host: %s", GMSH_HOST); o->add(buffer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment