aboutsummaryrefslogtreecommitdiff
path: root/lib/urlfilter/domain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/urlfilter/domain.cpp')
-rw-r--r--lib/urlfilter/domain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/urlfilter/domain.cpp b/lib/urlfilter/domain.cpp
index 3686210..20c4f3a 100644
--- a/lib/urlfilter/domain.cpp
+++ b/lib/urlfilter/domain.cpp
@@ -8,26 +8,26 @@
#include "domain.h"
-Domain::Domain(const QString& domain)
+Domain::Domain(const QString &domain)
: m_domain(domain)
, m_hash(qHash(domain, 0))
{
}
-Domain::Domain(Domain && other)
+Domain::Domain(Domain &&other)
: m_domain(std::move(other.m_domain))
, m_hash(std::move(other.m_hash))
{
}
-Domain & Domain::operator=(Domain && other)
+Domain &Domain::operator=(Domain &&other)
{
m_domain = std::move(other.m_domain);
m_hash = other.m_hash;
return *this;
}
-bool Domain::matches(const QUrl& url) const
+bool Domain::matches(const QUrl &url) const
{
const QString domain = url.host();