Drop PlasmaWindowInterface::setThemedIcon()

It's unused. KWin uses setIcon() instead.
This commit is contained in:
Vlad Zahorodnii 2021-10-22 10:35:21 +03:00
parent efc7731088
commit 9769969d8c
2 changed files with 0 additions and 12 deletions

View file

@ -882,11 +882,6 @@ void PlasmaWindowInterface::setSkipSwitcher(bool skip)
d->setState(ORG_KDE_PLASMA_WINDOW_MANAGEMENT_STATE_SKIPSWITCHER, skip);
}
void PlasmaWindowInterface::setThemedIconName(const QString &iconName)
{
d->setThemedIconName(iconName);
}
void PlasmaWindowInterface::setIcon(const QIcon &icon)
{
d->setIcon(icon);

View file

@ -135,13 +135,6 @@ public:
void setFullscreenable(bool set);
void setSkipTaskbar(bool skip);
void setSkipSwitcher(bool skip);
#if KWAYLANDSERVER_ENABLE_DEPRECATED_SINCE(5, 28)
/**
* @deprecated since 5.28 use setIcon
*/
KWAYLANDSERVER_DEPRECATED_VERSION(5, 28, "Use PlasmaWindowManagementInterface::setIcon(const QIcon&)")
void setThemedIconName(const QString &iconName);
#endif
void setShadeable(bool set);
void setShaded(bool set);
void setMovable(bool set);