mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
LoadRequest: Replace isEmpty with isValid
Also test for QUrl being valid, not just not empty
This commit is contained in:
parent
71ef1cefd0
commit
40d42f1230
|
@ -204,7 +204,7 @@ LoadRequest LocationBar::createLoadRequest() const
|
|||
req.setUrl(item->url());
|
||||
}
|
||||
|
||||
if (req.isEmpty()) {
|
||||
if (!req.isValid()) {
|
||||
// One word needs special handling, because QUrl::fromUserInput
|
||||
// would convert it to QUrl("http://WORD")
|
||||
if (!t.contains(QL1C(' ')) && !t.contains(QL1C('.'))) {
|
||||
|
@ -219,7 +219,7 @@ LoadRequest LocationBar::createLoadRequest() const
|
|||
}
|
||||
|
||||
// Search when creating url failed
|
||||
if (!req.url().isValid()) {
|
||||
if (!req.isValid()) {
|
||||
req = mApp->searchEnginesManager()->searchResult(t);
|
||||
}
|
||||
|
||||
|
|
|
@ -44,9 +44,9 @@ LoadRequest &LoadRequest::operator=(const LoadRequest &other)
|
|||
return *this;
|
||||
}
|
||||
|
||||
bool LoadRequest::isEmpty() const
|
||||
bool LoadRequest::isValid() const
|
||||
{
|
||||
return m_url.isEmpty();
|
||||
return m_url.isValid();
|
||||
}
|
||||
|
||||
QUrl LoadRequest::url() const
|
||||
|
|
|
@ -40,7 +40,7 @@ public:
|
|||
|
||||
LoadRequest &operator=(const LoadRequest &other);
|
||||
|
||||
bool isEmpty() const;
|
||||
bool isValid() const;
|
||||
|
||||
QUrl url() const;
|
||||
void setUrl(const QUrl &url);
|
||||
|
|
Loading…
Reference in New Issue
Block a user