[FSD] Superfluous parentheses

This commit is contained in:
Mat Sutcliffe
2019-10-03 19:10:42 +01:00
parent 077476c138
commit 9aabd5db04
3 changed files with 17 additions and 10 deletions

View File

@@ -47,28 +47,28 @@ namespace BlackCore
m_mappingMinimumVersion = CBuildConfig::getVersionString(); m_mappingMinimumVersion = CBuildConfig::getVersionString();
m_dbRootDirectoryUrl = CUrl("https://datastore.swift-project.org/"); m_dbRootDirectoryUrl = CUrl("https://datastore.swift-project.org/");
m_vatsimBookingsUrl = CUrl("http://vatbook.euroutepro.com/xml2.php"); m_vatsimBookingsUrl = CUrl("http://vatbook.euroutepro.com/xml2.php");
m_vatsimMetarsUrls = CUrlList({"http://metar.vatsim.net/metar.php"}); m_vatsimMetarsUrls = CUrlList{"http://metar.vatsim.net/metar.php"};
m_vatsimStatusFileUrls = CUrlList({ "https://status.vatsim.net" }); m_vatsimStatusFileUrls = CUrlList{ "https://status.vatsim.net" };
m_vatsimDataFileUrls = CUrlList({ "http://info.vroute.net/vatsim-data.txt" }); m_vatsimDataFileUrls = CUrlList{ "http://info.vroute.net/vatsim-data.txt" };
m_sharedUrls = CUrlList( m_sharedUrls = CUrlList
{ {
"https://datastore.swift-project.net/shared/", "https://datastore.swift-project.net/shared/",
"http://www.siliconmind.de/datastore/shared/", "http://www.siliconmind.de/datastore/shared/",
"http://download.swift-project.org/shared/", "http://download.swift-project.org/shared/",
"https://swift.fir-berlin.de/shared" "https://swift.fir-berlin.de/shared"
}); };
m_newsUrls = CUrlList( m_newsUrls = CUrlList
{ {
"https://blog.swift-project.net/?__print__=1", "https://blog.swift-project.net/?__print__=1",
"https://dev.swift-project.org/phame/blog/view/1/?__print__=1" "https://dev.swift-project.org/phame/blog/view/1/?__print__=1"
}); };
m_onlineHelpUrls = CUrlList( m_onlineHelpUrls = CUrlList
{ {
"https://datastore.swift-project.org/page/swifthelpdispatcher.html", "https://datastore.swift-project.org/page/swifthelpdispatcher.html",
"https://datastore.swift-project.net/page/swifthelpdispatcher.html" "https://datastore.swift-project.net/page/swifthelpdispatcher.html"
}); };
m_mapUrls = CUrlList({ "map.swift-project.org/" }); m_mapUrls = CUrlList{ "map.swift-project.org/" };
m_ncepGlobalForecastSystemUrl = CUrl("http://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_0p50.pl"); m_ncepGlobalForecastSystemUrl = CUrl("http://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_0p50.pl");
m_ncepGlobalForecastSystemUrl25 = CUrl("http://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_0p25.pl"); m_ncepGlobalForecastSystemUrl25 = CUrl("http://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_0p25.pl");

View File

@@ -26,6 +26,10 @@ namespace BlackMisc
} }
} }
CUrl::CUrl(const char *url) :
CUrl(QString(url))
{ }
CUrl::CUrl(const QUrl &url) CUrl::CUrl(const QUrl &url)
{ {
this->setQUrl(url); this->setQUrl(url);

View File

@@ -45,6 +45,9 @@ namespace BlackMisc
//! Default constructor. //! Default constructor.
CUrl(const QString &fullUrl = QString()); CUrl(const QString &fullUrl = QString());
//! Construct from character array.
CUrl(const char *url);
//! By QUrl. //! By QUrl.
CUrl(const QUrl &url); CUrl(const QUrl &url);