summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-04-08 00:53:16 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-04-08 00:53:16 +0200
commitf930e834c58750ef3ca4bf81537d7b7b9b1dbd5c (patch)
treebdd8a0eee1078793cb1228e30cff7b7a1798b337 /fluid
parent8eda47d411f344d254feffa8382fcd04e75b2c3e (diff)
Fix documentation URL's
Diffstat (limited to 'fluid')
-rw-r--r--fluid/fluid.cxx8
1 files 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 <code>.cxx</code> file so it still appears to be a single source file.<p>"
"<img src=\"embedded:/fluid-org.png\"></p>"
"<p>More information is available online at <a href="
- "\"http://www.fltk.org/doc-1.3/fluid.html\">http://www.fltk.org/</a>"
+ "\"https://www.fltk.org/doc-1.4/fluid.html\">https://www.fltk.org/</a>"
"</body></html>"
);
} 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;
}