This commit is contained in:
Zentino 2024-12-09 01:04:43 +08:00 committed by GitHub
commit f34c4caa9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@
#include "ui_rsswidget.h" #include "ui_rsswidget.h"
namespace namespace
{ {
void convertRelativeUrlToAbsolute(QString &html, const QString &baseUrl); void convertRelativeUrlToAbsolute(QString &html, const QString &baseUrl);
} }
RSSWidget::RSSWidget(IGUIApplication *app, QWidget *parent) RSSWidget::RSSWidget(IGUIApplication *app, QWidget *parent)
: GUIApplicationComponent(app, parent) : GUIApplicationComponent(app, parent)
@ -663,4 +663,4 @@ namespace
html.replace(fullMatch, (prefix + absoluteUrl + suffix)); html.replace(fullMatch, (prefix + absoluteUrl + suffix));
} }
} }
} }