clean up the svg if we change the image strategy
svn path=/trunk/KDE/kdelibs/; revision=1022990
This commit is contained in:
parent
45b39e84c4
commit
9525a9a267
@ -48,6 +48,8 @@ public:
|
||||
void setPixmap()
|
||||
{
|
||||
if (imagePath.isEmpty()) {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -65,6 +67,8 @@ public:
|
||||
QPainter p(&pm);
|
||||
svg->paint(&p, pm.rect());
|
||||
} else {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
pm = QPixmap(absImagePath);
|
||||
}
|
||||
|
||||
|
@ -52,6 +52,8 @@ public:
|
||||
void setPixmap()
|
||||
{
|
||||
if (imagePath.isEmpty()) {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -69,6 +71,8 @@ public:
|
||||
QPainter p(&pm);
|
||||
svg->paint(&p, pm.rect());
|
||||
} else {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
pm = QPixmap(absImagePath);
|
||||
}
|
||||
|
||||
|
@ -62,6 +62,8 @@ public:
|
||||
void setPixmap()
|
||||
{
|
||||
if (imagePath.isEmpty()) {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -92,6 +94,8 @@ public:
|
||||
svg->paint(&p, pm.rect());
|
||||
}
|
||||
} else {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
pm = QPixmap(absImagePath);
|
||||
}
|
||||
|
||||
|
@ -48,6 +48,8 @@ public:
|
||||
void setPixmap()
|
||||
{
|
||||
if (imagePath.isEmpty()) {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -65,6 +67,8 @@ public:
|
||||
QPainter p(&pm);
|
||||
svg->paint(&p, pm.rect());
|
||||
} else {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
pm = QPixmap(absImagePath);
|
||||
}
|
||||
|
||||
|
@ -62,6 +62,8 @@ public:
|
||||
void setPixmap()
|
||||
{
|
||||
if (imagePath.isEmpty()) {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
@ -92,6 +94,8 @@ public:
|
||||
svg->paint(&p, pm.rect());
|
||||
}
|
||||
} else {
|
||||
delete svg;
|
||||
svg = 0;
|
||||
pm = QPixmap(absImagePath);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user