fix build

This commit is contained in:
Martin Rotter 2023-10-24 09:16:47 +02:00
parent 6c0a25b3e0
commit d2d5e8c850

View file

@ -40,11 +40,11 @@
StandardFeed::StandardFeed(RootItem* parent_item) : Feed(parent_item) { StandardFeed::StandardFeed(RootItem* parent_item) : Feed(parent_item) {
m_type = Type::Rss0X; m_type = Type::Rss0X;
m_sourceType = SourceType::Url; m_sourceType = SourceType::Url;
m_encoding = m_postProcessScript = {}; m_encoding = m_postProcessScript = QString();
m_protection = NetworkFactory::NetworkAuthentication::NoAuthentication; m_protection = NetworkFactory::NetworkAuthentication::NoAuthentication;
m_username = {}; m_username = QString();
m_password = {}; m_password = QString();
} }
StandardFeed::StandardFeed(const StandardFeed& other) : Feed(other) { StandardFeed::StandardFeed(const StandardFeed& other) : Feed(other) {