From kde-commits Wed Apr 30 21:47:48 2008 From: =?utf-8?q?Aaron=20J=2E=20Seigo?= Date: Wed, 30 Apr 2008 21:47:48 +0000 To: kde-commits Subject: KDE/kdebase/workspace/libs/plasma Message-Id: <1209592068.347775.16954.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=120959208030571 SVN commit 802858 by aseigo: put ShadowItem in the Plasma namespace M +5 -0 shadowitem.cpp M +4 -0 shadowitem_p.h --- trunk/KDE/kdebase/workspace/libs/plasma/shadowitem.cpp #802857:802858 @@ -25,6 +25,9 @@ #include #include +namespace Plasma +{ + ShadowItem::ShadowItem(QGraphicsItem *item) { setZValue(20); @@ -102,3 +105,5 @@ { return m_offset; } + +} --- trunk/KDE/kdebase/workspace/libs/plasma/shadowitem_p.h #802857:802858 @@ -22,6 +22,8 @@ #include +namespace Plasma +{ class ShadowItem : public QGraphicsPixmapItem { @@ -43,4 +45,6 @@ QPointF m_offset; }; +} + #endif