diff options
| author | Peter Penz <[email protected]> | 2010-10-07 14:09:30 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-10-07 14:09:30 +0000 |
| commit | 431da0482caa72f90a6a04785383eb1d133f678e (patch) | |
| tree | f5f670aefb220aa5f735de6b3cf2c9b859f0b7aa /src/panels/information/informationpanelcontent.cpp | |
| parent | 06b0569613e918e5f73d762a54df041a38385195 (diff) | |
Internal cleanup for panels: Let the panel-implementations decide whether they accept an URL or not.
svn path=/trunk/KDE/kdebase/apps/; revision=1183480
Diffstat (limited to 'src/panels/information/informationpanelcontent.cpp')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index 3b9a17960..b6a41ca3d 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -55,7 +55,7 @@ #include "pixmapviewer.h" InformationPanelContent::InformationPanelContent(QWidget* parent) : - Panel(parent), + QWidget(parent), m_item(), m_pendingPreview(false), m_outdatedPreviewTimer(0), @@ -262,7 +262,7 @@ bool InformationPanelContent::eventFilter(QObject* obj, QEvent* event) break; } - return Panel::eventFilter(obj, event); + return QWidget::eventFilter(obj, event); } void InformationPanelContent::configureSettings() |
