[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

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

View File

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