diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-21 12:55:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-21 12:55:52 +0200 |
commit | fe459304497f822b1b9ab1f49602c0a81813c987 (patch) | |
tree | 29cad9c76c2b9f2ea8ddf95bc1f72451a088e6dd /include/vcl | |
parent | 54f53f79f077aa42275d097aed24cca1220c0f16 (diff) |
fix KDE build
after commit 0649622956431e0a1955cb80d1175025401ab5e5
"loplugin:unusedmethods"
Change-Id: Ia9ef3f8c1e64397a350656a3addc1b2a67f0b118
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/salnativewidgets.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx index e60cfe98f956..30997a984911 100644 --- a/include/vcl/salnativewidgets.hxx +++ b/include/vcl/salnativewidgets.hxx @@ -367,6 +367,7 @@ class VCL_DLLPUBLIC TabitemValue : public ImplControlValue bool isBothAligned() const { return isLeftAligned() && isRightAligned(); } bool isNotAligned() const { return !(mnAlignment & (TabitemFlags::LeftAligned | TabitemFlags::RightAligned)); } bool isFirst() const { return bool(mnAlignment & TabitemFlags::FirstInGroup); } + bool isLast() const { return bool(mnAlignment & TabitemFlags::LastInGroup); } const Rectangle& getContentRect() const { return maContentRect; } }; |