Move these classes into the Plasma namespace.

svn path=/trunk/KDE/kdelibs/; revision=1125931
This commit is contained in:
Fredrik Höglund 2010-05-12 17:47:52 +00:00
parent e96539da54
commit 309ae1dc84
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,8 @@
#include <cmath>
namespace Plasma
{
static inline qreal gaussian(qreal x, qreal sigma)
{
@ -244,3 +246,5 @@ void HaloPainter::paint(QPainter *painter, const QRect &textRect) const
painter->drawPixmap(hr.topLeft(), *pixmap);
}
} // namespace Plasma

View File

@ -26,6 +26,7 @@
class QRect;
class QPainter;
namespace Plasma {
class TileSet
{
@ -73,5 +74,7 @@ private:
mutable QCache<int, QPixmap> m_haloCache;
};
} // namespace Plasma
#endif