use Plasma namespace

svn path=/trunk/KDE/kdelibs/; revision=1017553
This commit is contained in:
Marco Martin 2009-08-30 21:41:06 +00:00
parent 77160a9e50
commit 40db26d969
2 changed files with 10 additions and 2 deletions

View File

@ -27,6 +27,8 @@
#include <Plasma/FrameSvg>
#include <Plasma/Animator>
#include <Plasma/Theme>
namespace Plasma
{
class ItemBackgroundPrivate
{
@ -154,3 +156,6 @@ void ItemBackground::animationUpdate(qreal progress)
}
update();
}
}

View File

@ -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