From f930e834c58750ef3ca4bf81537d7b7b9b1dbd5c Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 8 Apr 2020 00:53:16 +0200 Subject: Fix documentation URL's --- fluid/fluid.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index 8c4df1e3c..78c236755 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -942,17 +942,17 @@ void show_help(const char *name) { "the .cxx file so it still appears to be a single source file.

" "

" "

More information is available online at http://www.fltk.org/" + "\"https://www.fltk.org/doc-1.4/fluid.html\">https://www.fltk.org/" "" ); } else if (strcmp(name, "license.html")==0) { - fl_open_uri("http://www.fltk.org/doc-1.3/license.html"); + fl_open_uri("https://www.fltk.org/doc-1.4/license.html"); return; } else if (strcmp(name, "index.html")==0) { - fl_open_uri("http://www.fltk.org/doc-1.3/index.html"); + fl_open_uri("https://www.fltk.org/doc-1.4/index.html"); return; } else { - snprintf(helpname, sizeof(helpname), "http://www.fltk.org/%s", name); + snprintf(helpname, sizeof(helpname), "https://www.fltk.org/%s", name); fl_open_uri(helpname); return; } -- cgit v1.2.3