diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-22 23:29:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-22 23:29:25 +0300 |
commit | f1dfe88c7a0c30de14439277c4ba7d69bd495fbf (patch) | |
tree | 2bfa5831dc055db21b21930b162dd39e6921e86f /src/gui/widgets/spellshortcutcontainer.cpp | |
parent | 6dff7bd4ebf3c1718ac18f756c5f65acbd83ebe9 (diff) | |
download | plus-f1dfe88c7a0c30de14439277c4ba7d69bd495fbf.tar.gz plus-f1dfe88c7a0c30de14439277c4ba7d69bd495fbf.tar.bz2 plus-f1dfe88c7a0c30de14439277c4ba7d69bd495fbf.tar.xz plus-f1dfe88c7a0c30de14439277c4ba7d69bd495fbf.zip |
Set skin object in shortcut containers for future usage.
Diffstat (limited to 'src/gui/widgets/spellshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/spellshortcutcontainer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/spellshortcutcontainer.cpp b/src/gui/widgets/spellshortcutcontainer.cpp index e00c3bffd..4d53e8190 100644 --- a/src/gui/widgets/spellshortcutcontainer.cpp +++ b/src/gui/widgets/spellshortcutcontainer.cpp @@ -56,9 +56,10 @@ SpellShortcutContainer::~SpellShortcutContainer() { } -void SpellShortcutContainer::setWidget2(const Widget2 *const widget) +void SpellShortcutContainer::setSkin(const Widget2 *const widget, + Skin *const skin) { - Widget2::setWidget2(widget); + ShortcutContainer::setSkin(widget, skin); mForegroundColor = getThemeColor(ThemeColorId::TEXT, 255U); mForegroundColor2 = getThemeColor(ThemeColorId::TEXT_OUTLINE, 255U); } |