From 212821f61178bb4f93f8bb952adf1e2d97e11af9 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Wed, 30 Apr 2008 21:47:47 +0000 Subject: [PATCH] put ShadowItem in the Plasma namespace svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=802858 --- shadowitem.cpp | 5 +++++ shadowitem_p.h | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/shadowitem.cpp b/shadowitem.cpp index 4c7d64215..9e465d77d 100644 --- a/shadowitem.cpp +++ b/shadowitem.cpp @@ -25,6 +25,9 @@ #include #include +namespace Plasma +{ + ShadowItem::ShadowItem(QGraphicsItem *item) { setZValue(20); @@ -102,3 +105,5 @@ QPointF ShadowItem::offset() const { return m_offset; } + +} diff --git a/shadowitem_p.h b/shadowitem_p.h index bc42a707b..0618d85d2 100644 --- a/shadowitem_p.h +++ b/shadowitem_p.h @@ -22,6 +22,8 @@ #include +namespace Plasma +{ class ShadowItem : public QGraphicsPixmapItem { @@ -43,4 +45,6 @@ private: QPointF m_offset; }; +} + #endif