From d2d5e8c850e71c2dd4d466018efbd14120fb6866 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Tue, 24 Oct 2023 09:16:47 +0200 Subject: [PATCH] fix build --- src/librssguard/services/standard/standardfeed.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librssguard/services/standard/standardfeed.cpp b/src/librssguard/services/standard/standardfeed.cpp index 8c5c9c422..411cfd42e 100644 --- a/src/librssguard/services/standard/standardfeed.cpp +++ b/src/librssguard/services/standard/standardfeed.cpp @@ -40,11 +40,11 @@ StandardFeed::StandardFeed(RootItem* parent_item) : Feed(parent_item) { m_type = Type::Rss0X; m_sourceType = SourceType::Url; - m_encoding = m_postProcessScript = {}; + m_encoding = m_postProcessScript = QString(); m_protection = NetworkFactory::NetworkAuthentication::NoAuthentication; - m_username = {}; - m_password = {}; + m_username = QString(); + m_password = QString(); } StandardFeed::StandardFeed(const StandardFeed& other) : Feed(other) {