Sync from oxygen: Delete the old tileset whenever a new one is created. That prevents that kwin eats more and more pixmaps.

svn path=/trunk/KDE/kdebase/workspace/; revision=995380
This commit is contained in:
Martin Gräßlin 2009-07-12 15:20:16 +00:00
parent dc702e2e3c
commit 670dcbfc5e

View file

@ -90,6 +90,8 @@ void renderDot(QPainter *p, const QPointF &point, qreal diameter)
OxygenClient::OxygenClient(KDecorationBridge *b, KDecorationFactory *f)
: KCommonDecorationUnstable(b, f)
, colorCacheInvalid_(true)
, shadowTiles_(NULL)
, glowTiles_(NULL)
, helper_(*globalHelper)
{
qAddPostRoutine(oxkwincleanupBefore);
@ -97,6 +99,8 @@ OxygenClient::OxygenClient(KDecorationBridge *b, KDecorationFactory *f)
OxygenClient::~OxygenClient()
{
delete glowTiles_;
delete shadowTiles_;
}
QString OxygenClient::visibleName() const
{
@ -571,6 +575,9 @@ TileSet *OxygenClient::shadowTiles(const QColor& color, const QColor& glow, qrea
tileSet = new TileSet(shadow, size, size, 1, 1);
glowTilesOption_ = opt;
if (glowTiles_) {
delete glowTiles_;
}
glowTiles_ = tileSet;
} else {
//---------------------------------------------------------------
@ -635,6 +642,9 @@ TileSet *OxygenClient::shadowTiles(const QColor& color, const QColor& glow, qrea
tileSet = new TileSet(shadow, size, size, 1, 1);
shadowTilesOption_ = opt;
if (shadowTiles_) {
delete shadowTiles_;
}
shadowTiles_ = tileSet;
}
return tileSet;