summaryrefslogtreecommitdiff
path: root/utils/rbutilqt
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt')
-rw-r--r--utils/rbutilqt/gui/changelog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/rbutilqt/gui/changelog.cpp b/utils/rbutilqt/gui/changelog.cpp
index 9005b9e474..6495c0ebd9 100644
--- a/utils/rbutilqt/gui/changelog.cpp
+++ b/utils/rbutilqt/gui/changelog.cpp
@@ -62,9 +62,9 @@ QString Changelog::parseChangelogFile(QString filename)
62 while(line.startsWith("*")) { 62 while(line.startsWith("*")) {
63 QString t = line.remove(QRegularExpression("^\\*")); 63 QString t = line.remove(QRegularExpression("^\\*"));
64 t.replace(QRegularExpression("FS#(\\d+)"), 64 t.replace(QRegularExpression("FS#(\\d+)"),
65 "<a href='http://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>"); 65 "<a href='https://www.rockbox.org/tracker/task/\\1'>FS#\\1</a>");
66 t.replace(QRegularExpression("G#(\\d+)"), 66 t.replace(QRegularExpression("G#(\\d+)"),
67 "<a href='http://gerrit.rockbox.org/r/\\1'>G#\\1</a>"); 67 "<a href='https://gerrit.rockbox.org/r/\\1'>G#\\1</a>");
68 text.append(QString("<li>%1</li>").arg(t)); 68 text.append(QString("<li>%1</li>").arg(t));
69 line = c.readLine(); 69 line = c.readLine();
70 if(line.startsWith("#")) 70 if(line.startsWith("#"))