mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
remove unnecessary 'const'
svn path=/trunk/KDE/kdebase/apps/; revision=1036229
This commit is contained in:
parent
0bd6e46b2b
commit
ee08881486
2 changed files with 2 additions and 2 deletions
|
@ -625,7 +625,7 @@ unsigned int MetaDataWidget::rating() const
|
|||
#endif
|
||||
}
|
||||
|
||||
const QList<Nepomuk::Tag> MetaDataWidget::tags() const
|
||||
QList<Nepomuk::Tag> MetaDataWidget::tags() const
|
||||
{
|
||||
#ifdef HAVE_NEPOMUK
|
||||
QMutexLocker locker(&d->m_mutex);
|
||||
|
|
|
@ -90,7 +90,7 @@ public:
|
|||
* to wait for the signal loadingFinished() or tagsChanged()
|
||||
* to get a valid result.
|
||||
*/
|
||||
const QList<Nepomuk::Tag> tags() const;
|
||||
QList<Nepomuk::Tag> tags() const;
|
||||
|
||||
/**
|
||||
* Returns the comment for the currently set item(s). It is required
|
||||
|
|
Loading…
Reference in a new issue