Changes to kdelibs were made, updating

svn path=/trunk/KDE/kdebase/apps/; revision=744509
This commit is contained in:
Rafael Fernández López 2007-12-03 20:38:37 +00:00
parent 028a0bd759
commit f42b436471
2 changed files with 3 additions and 3 deletions

View file

@ -130,7 +130,7 @@ int DolphinSortFilterProxyModel::compareCategories(const QModelIndex &left,
return KDirSortFilterProxyModel::compareCategories(left, right);
}
bool DolphinSortFilterProxyModel::subsortLessThan(const QModelIndex& left,
bool DolphinSortFilterProxyModel::subSortLessThan(const QModelIndex& left,
const QModelIndex& right) const
{
#ifdef HAVE_NEPOMUK
@ -211,7 +211,7 @@ bool DolphinSortFilterProxyModel::subsortLessThan(const QModelIndex& left,
}
#endif
return KDirSortFilterProxyModel::subsortLessThan(left, right);
return KDirSortFilterProxyModel::subSortLessThan(left, right);
}
#include "dolphinsortfilterproxymodel.moc"

View file

@ -91,7 +91,7 @@ signals:
void sortingRoleChanged();
protected:
virtual bool subsortLessThan(const QModelIndex& left,
virtual bool subSortLessThan(const QModelIndex& left,
const QModelIndex& right) const;
private: