summaryrefslogtreecommitdiff
path: root/src/gui/skin.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-12-12 20:45:36 +0300
committerAndrei Karas <akaras@inbox.ru>2016-12-12 20:45:36 +0300
commita908eb0431a25e3228277991d94d6a4add8f5010 (patch)
tree5b52d0e12acc8f813c396290c2bb0e2d8b016d4e /src/gui/skin.h
parent8859a812ccf4b0758734192283c24b38a12b2eb9 (diff)
downloadplus-a908eb0431a25e3228277991d94d6a4add8f5010.tar.gz
plus-a908eb0431a25e3228277991d94d6a4add8f5010.tar.bz2
plus-a908eb0431a25e3228277991d94d6a4add8f5010.tar.xz
plus-a908eb0431a25e3228277991d94d6a4add8f5010.zip
Fix too long lines.
Diffstat (limited to 'src/gui/skin.h')
-rw-r--r--src/gui/skin.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/skin.h b/src/gui/skin.h
index a0b33fe53..74f248e99 100644
--- a/src/gui/skin.h
+++ b/src/gui/skin.h
@@ -70,13 +70,15 @@ class Skin final
/**
* Returns the image used by a close button for this skin.
*/
- const Image *getCloseImage(const bool state) const noexcept2 A_WARN_UNUSED
+ const Image *getCloseImage(const bool state) const
+ noexcept2 A_WARN_UNUSED
{ return state ? mCloseImageHighlighted : mCloseImage; }
/**
* Returns the image used by a sticky button for this skin.
*/
- const Image *getStickyImage(const bool state) const noexcept2 A_WARN_UNUSED
+ const Image *getStickyImage(const bool state) const
+ noexcept2 A_WARN_UNUSED
{ return state ? mStickyImageDown : mStickyImageUp; }
/**