From: Jean-Baptiste Kempf Date: Wed, 27 Jan 2010 14:06:14 +0000 (+0100) Subject: Qt: EPGItem doesn't need QObject inheritage X-Git-Tag: 1.1.0-ff~805 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=613ec7315ecf75096b6ae999701a76e955b1c547;p=vlc Qt: EPGItem doesn't need QObject inheritage --- diff --git a/modules/gui/qt4/Modules.am b/modules/gui/qt4/Modules.am index 048df1b616..32f5fabd6f 100644 --- a/modules/gui/qt4/Modules.am +++ b/modules/gui/qt4/Modules.am @@ -53,7 +53,6 @@ nodist_SOURCES_qt4 = \ components/interface_widgets.moc.cpp \ components/controller.moc.cpp \ components/controller_widget.moc.cpp \ - components/epg/EPGItem.moc.cpp \ components/epg/EPGRuler.moc.cpp \ components/epg/EPGView.moc.cpp \ components/epg/EPGWidget.moc.cpp \ diff --git a/modules/gui/qt4/components/epg/EPGItem.hpp b/modules/gui/qt4/components/epg/EPGItem.hpp index 7a1c3b5113..376ba6d7ba 100644 --- a/modules/gui/qt4/components/epg/EPGItem.hpp +++ b/modules/gui/qt4/components/epg/EPGItem.hpp @@ -24,7 +24,6 @@ #ifndef EPGITEM_H #define EPGITEM_H -#include #include class QPainter; @@ -33,7 +32,7 @@ class QDateTime; class EPGView; -class EPGItem : public QObject, public QGraphicsItem +class EPGItem : public QGraphicsItem { public: EPGItem( EPGView *view );