summaryrefslogtreecommitdiffstats
path: root/kio/kfile
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-02-09 19:59:23 +0900
committerSlávek Banko <slavek.banko@axis.cz>2021-02-03 21:15:03 +0100
commite58c536dd1b55adc2bb733895ae571f860f88a5e (patch)
tree30378bec34da44a573c490794f0ea51aaa86dbef /kio/kfile
parentfbd64ec386c285ee3f7861d0860f4f476d163967 (diff)
downloadtdelibs-e58c536dd1b55adc2bb733895ae571f860f88a5e.tar.gz
tdelibs-e58c536dd1b55adc2bb733895ae571f860f88a5e.zip
Removed beagle related code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e5256a1bd6b1ee6eb909041c7fecc01d3d6d4be6)
Diffstat (limited to 'kio/kfile')
-rw-r--r--kio/kfile/kfiledialog.cpp6
-rw-r--r--kio/kfile/kurlbar.cpp9
2 files changed, 0 insertions, 15 deletions
diff --git a/kio/kfile/kfiledialog.cpp b/kio/kfile/kfiledialog.cpp
index bc728acf7..6dbcd1fa9 100644
--- a/kio/kfile/kfiledialog.cpp
+++ b/kio/kfile/kfiledialog.cpp
@@ -1171,12 +1171,6 @@ void KFileDialog::urlEntered(const KURL& url)
d->pathCombo->setURL( url );
}
- if (url.protocol()=="beagle" && url.path()=="/") {
- d->pathCombo->setEditText("beagle:/<"+i18n("search term")+">");
- d->pathCombo->lineEdit()->setSelection(8,255);
- d->pathCombo->setFocus();
- }
-
locationEdit->blockSignals( true );
locationEdit->setCurrentItem( 0 );
if ( d->keepLocation )
diff --git a/kio/kfile/kurlbar.cpp b/kio/kfile/kurlbar.cpp
index 7102b1b64..55a882edc 100644
--- a/kio/kfile/kurlbar.cpp
+++ b/kio/kfile/kurlbar.cpp
@@ -611,15 +611,6 @@ void KURLBar::readItem( int i, KConfig *config, bool applicationLocal )
TQString description = config->readEntry( TQString("Description_") + number );
- if (description.isEmpty() && url.protocol()=="beagle") {
- KIO::UDSEntry uds;
- const KURL kurl("beagle:?beagled-status");
- if (!KIO::NetAccess::stat(kurl, uds))
- return;
-
- description = i18n("Desktop Search");
- }
-
insertItem( url,
description,
applicationLocal,