not hasElementPrefix(prefix) works also when prefix is empty
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=805339
This commit is contained in:
parent
2a6a5fa6db
commit
48f9257fb1
@ -194,7 +194,11 @@ bool PanelSvg::hasElementPrefix(const QString & prefix) const
|
|||||||
{
|
{
|
||||||
//for now it simply checks if a center element exists,
|
//for now it simply checks if a center element exists,
|
||||||
//because it could make sense for certain themes to not have all the elements
|
//because it could make sense for certain themes to not have all the elements
|
||||||
return hasElement(prefix + "-center");
|
if (prefix.isEmpty()) {
|
||||||
|
return hasElement("center");
|
||||||
|
} else {
|
||||||
|
return hasElement(prefix + "-center");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PanelSvg::hasElementPrefix(Plasma::Location location) const
|
bool PanelSvg::hasElementPrefix(Plasma::Location location) const
|
||||||
|
Loading…
Reference in New Issue
Block a user