From 40db26d9694467b19f680d644cf4194fcad419d6 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Sun, 30 Aug 2009 21:41:06 +0000 Subject: [PATCH] use Plasma namespace svn path=/trunk/KDE/kdelibs/; revision=1017553 --- widgets/itembackground.cpp | 5 +++++ widgets/itembackground.h | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/widgets/itembackground.cpp b/widgets/itembackground.cpp index dae7868b5..ad270a92d 100644 --- a/widgets/itembackground.cpp +++ b/widgets/itembackground.cpp @@ -27,6 +27,8 @@ #include #include #include +namespace Plasma +{ class ItemBackgroundPrivate { @@ -154,3 +156,6 @@ void ItemBackground::animationUpdate(qreal progress) } update(); } + +} + diff --git a/widgets/itembackground.h b/widgets/itembackground.h index 73e981c63..6f1a67962 100644 --- a/widgets/itembackground.h +++ b/widgets/itembackground.h @@ -27,8 +27,6 @@ namespace Plasma { class FrameSvg; } -class ItemBackgroundPrivate; - /** * @class ItemBackground plasma/widgets/itembackground.h * @@ -36,6 +34,10 @@ class ItemBackgroundPrivate; * * @since 4.4 */ +namespace Plasma +{ +class ItemBackgroundPrivate; + class ItemBackground : public QGraphicsWidget { Q_OBJECT @@ -65,5 +67,6 @@ private Q_SLOTS: private: ItemBackgroundPrivate *d; }; +} #endif