Fix some links in documentation

Particularly to Doxygen docs and NEdit which appears to have moved
to sourceforge (according to Wikipedia), see
https://en.wikipedia.org/wiki/NEdit

Note: nedit.org exists but shows some non-English text.
This commit is contained in:
Albrecht Schlosser 2019-05-15 17:16:11 +02:00
parent fa5c2718da
commit c4a755bdf8
3 changed files with 11 additions and 11 deletions

@ -182,16 +182,16 @@ typedef void (*Fl_Text_Predelete_Cb)(int pos, int nDeleted, void* cbArg);
/** /**
\brief This class manages Unicode text displayed in one or more Fl_Text_Display widgets. This class manages Unicode text displayed in one or more Fl_Text_Display widgets.
All text in Fl_Text_Buffer must be encoded in UTF-8. All indices used in the All text in Fl_Text_Buffer must be encoded in UTF-8. All indices used in the
function calls must be aligned to the start of a UTF-8 sequence. All indices function calls must be aligned to the start of a UTF-8 sequence. All indices
and pointers returned will be aligned. All functions that return a single and pointers returned will be aligned. All functions that return a single
character will return that in an unsiged int in UCS-4 encoding. character will return that in an unsiged int in UCS-4 encoding.
The Fl_Text_Buffer class is used by the Fl_Text_Display The Fl_Text_Buffer class is used by the Fl_Text_Display and Fl_Text_Editor
and Fl_Text_Editor to manage complex text data and is based upon the to manage complex text data and is based upon the excellent NEdit text
excellent NEdit text editor engine - see http://www.nedit.org/. editor engine - see https://sourceforge.net/projects/nedit/.
*/ */
class FL_EXPORT Fl_Text_Buffer { class FL_EXPORT Fl_Text_Buffer {
public: public:

@ -156,7 +156,7 @@ This will appear in the document:
", ü, ç, Ç, but not all HTML quoting characters. ", ü, ç, Ç, but not all HTML quoting characters.
For further informations about HTML quoting characters see For further informations about HTML quoting characters see
<br> \b http://www.doxygen.org/htmlcmds.html <br> \b http://www.doxygen.org/manual/htmlcmds.html
Alternatively you can use \b UTF-8 encoding within Doxygen comments. Alternatively you can use \b UTF-8 encoding within Doxygen comments.
@ -221,9 +221,9 @@ Links to other documents and external links can be embedded with
unicode that has been created with a \\page statement. unicode that has been created with a \\page statement.
- For further informations about quoting see - For further informations about quoting see
http://www.doxygen.org/htmlcmds.html http://www.doxygen.org/manual/htmlcmds.html
- see <a href="http://www.nedit.org/">Nedit</a> creates - see <a href="https://www.fltk.org/">FLTK Library</a> creates
a standard HTML link a standard HTML link
\endcode \endcode
@ -234,9 +234,9 @@ appears as:
unicode that has been created with a \\page statement. unicode that has been created with a \\page statement.
- For further informations about quoting see - For further informations about quoting see
http://www.doxygen.org/htmlcmds.html http://www.doxygen.org/manual/htmlcmds.html
- see <a href="http://www.nedit.org/">Nedit</a> creates - see <a href="https://www.fltk.org/">FLTK Library</a> creates
a standard HTML link a standard HTML link

@ -620,8 +620,8 @@ Fl_Text_Editor widget.
The Fl_Text_Editor widget supports highlighting The Fl_Text_Editor widget supports highlighting
of text with different fonts, colors, and sizes. The of text with different fonts, colors, and sizes. The
implementation is based on the excellent implementation is based on the excellent
<A HREF="http://www.nedit.org/">NEdit</A> <A HREF="https://sourceforge.net/projects/nedit/">NEdit</A>
text editor core, from http://www.nedit.org/, which text editor core, from https://sourceforge.net/projects/nedit/, which
uses a parallel "style" buffer which tracks the font, color, and uses a parallel "style" buffer which tracks the font, color, and
size of the text that is drawn. size of the text that is drawn.