┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2007-04-02 10:19:47 +0000
committerDavid Faure <[email protected]>2007-04-02 10:19:47 +0000
commit574dd6422571b6ee1a459d94170f9a4a963c0c86 (patch)
treeedd4ddd158c4cc43c05d0bc31af1ff21869aa3d3 /src
parent2e55ef7a2ba8d10a452e54b5d23e5b85a8c5efca (diff)
fixes
svn path=/trunk/KDE/kdebase/apps/; revision=649220
Diffstat (limited to 'src')
-rw-r--r--src/editbookmarkdialog.cpp2
-rw-r--r--src/generalsettingspage.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/editbookmarkdialog.cpp b/src/editbookmarkdialog.cpp
index eed5af462..d3cbfffac 100644
--- a/src/editbookmarkdialog.cpp
+++ b/src/editbookmarkdialog.cpp
@@ -123,7 +123,7 @@ void EditBookmarkDialog::selectIcon()
void EditBookmarkDialog::selectLocation()
{
const QString location(m_location->text());
- KUrl url(KFileDialog::getExistingUrl(location));
+ KUrl url(KFileDialog::getExistingDirectoryUrl(location));
if (!url.isEmpty()) {
m_location->setText(url.prettyUrl());
}
diff --git a/src/generalsettingspage.cpp b/src/generalsettingspage.cpp
index 8ac1a37ea..e7e8b23fb 100644
--- a/src/generalsettingspage.cpp
+++ b/src/generalsettingspage.cpp
@@ -134,7 +134,7 @@ void GeneralSettingsPage::applySettings()
void GeneralSettingsPage::selectHomeUrl()
{
const QString homeUrl(m_homeUrl->text());
- KUrl url(KFileDialog::getExistingUrl(homeUrl));
+ KUrl url(KFileDialog::getExistingDirectoryUrl(homeUrl));
if (!url.isEmpty()) {
m_homeUrl->setText(url.prettyUrl());
}