diff options
| author | Peter Penz <[email protected]> | 2008-06-03 19:27:46 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-06-03 19:27:46 +0000 |
| commit | 193218f5f4ffca3d2d7633e891c7d6ff6c75522e (patch) | |
| tree | d919aca7c51b06adec17d607df94ec6ab15a9348 | |
| parent | e431abda40f5f55456a8a203f7712a09926e5c5b (diff) | |
no need to request a thumbnail
svn path=/trunk/KDE/kdebase/apps/; revision=816400
| -rw-r--r-- | src/infosidebarpage.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index d2201eb2b..f4fa20855 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -47,6 +47,8 @@ #include "metatextlabel.h" #include "pixmapviewer.h" +#include <kdebug.h> + InfoSidebarPage::InfoSidebarPage(QWidget* parent) : SidebarPage(parent), m_pendingPreview(false), @@ -319,8 +321,7 @@ void InfoSidebarPage::showMetaInfo() // in a readable way const KFileMetaInfo::WhatFlags flags = KFileMetaInfo::Fastest | KFileMetaInfo::TechnicalInfo | - KFileMetaInfo::ContentInfo | - KFileMetaInfo::Thumbnail; + KFileMetaInfo::ContentInfo; const QString path = fileItem.url().path(); const KFileMetaInfo fileMetaInfo(path, QString(), flags); if (fileMetaInfo.isValid()) { |
