remove old ifdefs, it's cool how we are now :)

This commit is contained in:
Albert Astals Cid 2014-05-09 23:04:43 +02:00
parent e93d5bda01
commit b92f5b5188

View file

@ -1743,10 +1743,6 @@ void DocumentPrivate::doProcessSearchMatch( RegularAreaRect *match, RunningSearc
}
delete match;
}
#if 0
else if ( !noDialogs )
KMessageBox::information( m_widget, i18n( "No matches found for '%1'.", text ) );
#endif
// notify observers about highlights changes
foreach(int pageNumber, *pagesToNotify)
@ -3292,21 +3288,6 @@ void Document::searchText( int searchID, const QString & text, bool fromStart, Q
return;
}
if ( !noDialogs )
{
#if 0
KDialog *searchDialog = new KDialog(widget());
searchDialog->setCaption( i18n("Search in progress...") );
searchDialog->setButtons( KDialog::Cancel );
QLabel *searchLabel = new QLabel(i18n("Searching for %1", text), searchDialog);
searchDialog->setMainWidget( searchLabel );
QTimer::singleShot(500, searchDialog, SLOT(show()));
connect(this, SIGNAL(searchFinished(int,Okular::Document::SearchStatus)), searchDialog, SLOT(deleteLater()));
connect(searchDialog, SIGNAL(finished()), this, SLOT(cancelSearch()));
#endif
}
// if searchID search not recorded, create new descriptor and init params
QMap< int, RunningSearch * >::iterator searchIt = d->m_searches.find( searchID );
if ( searchIt == d->m_searches.end() )