┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/urlnavigator.cpp
diff options
context:
space:
mode:
authorOscar Blumberg <[email protected]>2007-02-22 20:15:20 +0000
committerOscar Blumberg <[email protected]>2007-02-22 20:15:20 +0000
commit9c8e7f4e43d23c6d014ca4ffe2083ad8cc737753 (patch)
treea3d8eda5adf69cd9cd6fd88cc0112e3192ab4eb1 /src/urlnavigator.cpp
parent571e40b057c8fef7da6c5be70683898b349708bb (diff)
Add libkmetadata detection and minor fixes
SVN_SILENT svn path=/trunk/KDE/kdebase/apps/; revision=636328
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r--src/urlnavigator.cpp4
1 files changed, 2 insertions, 2 deletions
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) {