put ShadowItem in the Plasma namespace

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=802858
This commit is contained in:
Aaron J. Seigo 2008-04-30 21:47:47 +00:00
parent 0916889c58
commit 212821f611
2 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,9 @@
#include <QImage>
#include <QDebug>
namespace Plasma
{
ShadowItem::ShadowItem(QGraphicsItem *item)
{
setZValue(20);
@ -102,3 +105,5 @@ QPointF ShadowItem::offset() const
{
return m_offset;
}
}

View File

@ -22,6 +22,8 @@
#include <QtGui/QGraphicsPixmapItem>
namespace Plasma
{
class ShadowItem : public QGraphicsPixmapItem
{
@ -43,4 +45,6 @@ private:
QPointF m_offset;
};
}
#endif