Git commit e66dcd9714afafbebff1ab34c6c9cb91fc470be6 by Yuri Chornoivan. Committed on 13/11/2019 at 17:08. Pushed by yurchor into branch 'master'.
Use URLs with transport encryption M +1 -1 COPYING.DOC M +1 -1 doc/man-kmouth.1.docbook M +1 -1 phrasebook/phrasebook.cpp M +1 -1 wordcompletion/wordlist.cpp https://commits.kde.org/kmouth/e66dcd9714afafbebff1ab34c6c9cb91fc470be6 diff --git a/COPYING.DOC b/COPYING.DOC index 4a0fe1c..71ec2c4 100644 --- a/COPYING.DOC +++ b/COPYING.DOC @@ -355,7 +355,7 @@ The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See -http://www.gnu.org/copyleft/. +https://www.gnu.org/copyleft/. Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this diff --git a/doc/man-kmouth.1.docbook b/doc/man-kmouth.1.docbook index 3e02c81..c1c38fe 100644 --- a/doc/man-kmouth.1.docbook +++ b/doc/man-kmouth.1.docbook @@ -63,7 +63,7 @@ url="help:/kmouth">help:/kmouth</ulink> <parameter>help:/kmouth</parameter></userinput>).</para> <para>There is also further information available at the <ulink -url="http://accessibility.kde.org/">&kde; Accessibility project web +url="https://community.kde.org/Accessibility">&kde; Accessibility project web site</ulink>.</para> </refsect1> diff --git a/phrasebook/phrasebook.cpp b/phrasebook/phrasebook.cpp index d643318..ecdf8be 100644 --- a/phrasebook/phrasebook.cpp +++ b/phrasebook/phrasebook.cpp @@ -159,7 +159,7 @@ bool PhraseBook::decode(QXmlInputSource &source) { PhraseBookParser parser; QXmlSimpleReader reader; - reader.setFeature(QStringLiteral("http://trolltech.com/xml/features/report-start-end-entity"), true); + reader.setFeature(QStringLiteral("http://qt-project.org/xml/features/report-start-end-entity"), true); reader.setContentHandler(&parser); if (reader.parse(source)) { diff --git a/wordcompletion/wordlist.cpp b/wordcompletion/wordlist.cpp index 510c1d4..d0c4dc3 100644 --- a/wordcompletion/wordlist.cpp +++ b/wordcompletion/wordlist.cpp @@ -185,7 +185,7 @@ void addWordsFromFile(WordMap &map, const QString &filename, QTextCodec *codec) QXmlInputSource source(&xmlfile); XMLParser parser; QXmlSimpleReader reader; - reader.setFeature(QStringLiteral("http://trolltech.com/xml/features/report-start-end-entity"), true); + reader.setFeature(QStringLiteral("http://qt-project.org/xml/features/report-start-end-entity"), true); reader.setContentHandler(&parser); WordMap words;
