From: John Darrington Date: Sun, 14 Mar 2021 15:33:31 +0000 (+0100) Subject: src/ui/gui/main.c: Add a startup tip for Windows X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=db50bfb4347005ba0c563e43fe08d7281d426893;p=pspp src/ui/gui/main.c: Add a startup tip for Windows --- diff --git a/src/ui/gui/main.c b/src/ui/gui/main.c index fd64f4fd68..588e16e63c 100644 --- a/src/ui/gui/main.c +++ b/src/ui/gui/main.c @@ -173,6 +173,9 @@ on_local_options (GApplication * application, Each entry should end with a period. */ static const char *tips[] = { +#ifdef _WIN32 + N_("PSPP runs best on free platforms such as GNU and GNU/Linux. Windows is a non-free system. As such, certain features might work sub-optimally. For best results use a free system instead."), +#endif N_("Right click on variable lists to change between viewing the variables' names and their labels."), N_("Click \"Paste\" instead of \"OK\" when running procedures. This allows you to edit your commands before running them and you have better control over your work."), N_("Directly import your spreadsheets using the \"File | Import Data\" menu."),