X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/571e40b057c8fef7da6c5be70683898b349708bb..9c8e7f4e43d23c6d014ca4ffe2083ad8cc737753:/src/urlnavigator.cpp diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index b9290983f..1ac92474e 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -343,7 +343,7 @@ void UrlNavigator::slotReturnPressed(const QString& text) KUrl typedUrl(text); if (typedUrl.hasPass()) { - typedUrl.setPass(QString::null); + typedUrl.setPass(QString()); } QStringList urls = m_pathBox->urls(); @@ -567,7 +567,7 @@ void UrlNavigator::updateContent() QString hostText = url().host(); if (!url().user().isEmpty()) { - hostText = url().user() + "@" + hostText; + hostText = url().user() + '@' + hostText; } if (!m_host) {