summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Menu_add.cxx2
-rw-r--r--src/fl_shortcut.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Menu_add.cxx b/src/Fl_Menu_add.cxx
index 9e0ba77e5..b2282b6f2 100644
--- a/src/Fl_Menu_add.cxx
+++ b/src/Fl_Menu_add.cxx
@@ -324,7 +324,7 @@ int Fl_Menu_Item::insert(
corresponding submenu terminators (maybe more than one) are added as well.
\todo Raw integer shortcut needs examples.
- Dependent on responses to http://fltk.org/newsgroups.php?gfltk.development+v:10086 and results of STR#2344
+ Dependent on responses to https://www.fltk.org/newsgroups.php?gfltk.coredev+v:10086 and results of STR#2344
*/
int Fl_Menu_::add(const char *label,int shortcut,Fl_Callback *callback,void *userdata,int flags) {
return(insert(-1,label,shortcut,callback,userdata,flags)); // -1: append
diff --git a/src/fl_shortcut.cxx b/src/fl_shortcut.cxx
index 339ffefb8..4a02207d3 100644
--- a/src/fl_shortcut.cxx
+++ b/src/fl_shortcut.cxx
@@ -188,7 +188,7 @@ const char* fl_shortcut_label(unsigned int shortcut, const char **eom) {
// Add modifier key names.
// Note: if necessary we could change the order here depending on the platform.
- // However, as discussed in fltk.development, the order appears to be the
+ // However, as discussed in fltk.coredev, the order appears to be the
// same on all platforms, with exceptions in _some_ Linux applications.
if (shortcut & FL_CTRL) {p = add_modifier_key(p, end, fl_local_ctrl);}