mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Patches to make kdebase compile with current animation code.
svn path=/trunk/KDE/kdebase/apps/; revision=1057994
This commit is contained in:
parent
3dc3edfa79
commit
e6defda0b8
1 changed files with 5 additions and 2 deletions
|
@ -191,7 +191,10 @@ KUrl DolphinSearchOptionsConfigurator::nepomukUrl() const
|
|||
|
||||
// TODO: respect m_customSearchQuery
|
||||
|
||||
return query.toSearchUrl();
|
||||
//XXX: wont compile
|
||||
//return query.toSearchUrl();
|
||||
KUrl obj;
|
||||
return obj;
|
||||
}
|
||||
|
||||
void DolphinSearchOptionsConfigurator::setCustomSearchQuery(const QString& searchQuery)
|
||||
|
@ -301,7 +304,7 @@ void DolphinSearchOptionsConfigurator::saveQuery()
|
|||
|
||||
void DolphinSearchOptionsConfigurator::addCriterion(SearchCriterionSelector* criterion)
|
||||
{
|
||||
connect(criterion, SIGNAL(removeCriterion()), this, SLOT(removeCriterion()));
|
||||
connect(criterion, SIGNAL(removeCriterion()), this, SLOT(removeCriterion()));
|
||||
connect(criterion, SIGNAL(criterionChanged()), this, SLOT(slotCriterionChanged()));
|
||||
|
||||
// insert the new selector before the KSeparator at the bottom
|
||||
|
|
Loading…
Reference in a new issue