Removed beagle related code.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e5256a1bd6)
v3.5.13-sru
Michele Calgaro 4 years ago committed by Slávek Banko
parent fbd64ec386
commit e58c536dd1
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -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 )

@ -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,

@ -337,7 +337,7 @@ bool NetAccess::statInternal( const KURL & url, int details, bool source,
TQWidget* window )
{
bJobOK = true; // success unless further error occurs
KIO::StatJob * job = KIO::stat( url, !url.isLocalFile() && !url.url().startsWith("beagle:?") );
KIO::StatJob * job = KIO::stat( url, !url.isLocalFile() );
job->setWindow (window);
job->setDetails( details );
job->setSide( source );

Loading…
Cancel
Save