mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
generic: misc cleanups
This commit is contained in:
parent
2fb74439bd
commit
60d9402fe4
2 changed files with 1 additions and 10 deletions
|
@ -262,8 +262,7 @@ QList<KUrl> KFileMetaDataWidget::Private::sortedKeys(const QHash<KUrl, QVariant>
|
|||
QHashIterator<KUrl, QVariant> hashIt(data);
|
||||
while (hashIt.hasNext()) {
|
||||
hashIt.next();
|
||||
const KUrl uri = hashIt.key();
|
||||
list.append(uri);
|
||||
list.append(hashIt.key());
|
||||
}
|
||||
|
||||
return list;
|
||||
|
@ -325,9 +324,4 @@ QSize KFileMetaDataWidget::sizeHint() const
|
|||
return QSize(width, height);
|
||||
}
|
||||
|
||||
bool KFileMetaDataWidget::event(QEvent* event)
|
||||
{
|
||||
return QWidget::event(event);
|
||||
}
|
||||
|
||||
#include "moc_kfilemetadatawidget.cpp"
|
||||
|
|
|
@ -70,9 +70,6 @@ Q_SIGNALS:
|
|||
*/
|
||||
void metaDataRequestFinished(const KFileItemList& items);
|
||||
|
||||
protected:
|
||||
virtual bool event(QEvent* event);
|
||||
|
||||
private:
|
||||
class Private;
|
||||
Private* d;
|
||||
|
|
Loading…
Add table
Reference in a new issue