diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-20 11:05:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-20 11:05:21 +0200 |
commit | 6c785f65ea5cc961c0a079455973f3086731b2c9 (patch) | |
tree | 32c4d921fa24493299ccbcc028c6194fd56f7b3b | |
parent | 4a8caa37fe83c389f4fd43219e8ea0f21f03c6fe (diff) |
fix KDE4 build
after 72edb696 "loplugin:unusedmethods in vcl"
Change-Id: I15d884b39b38da80bcf10ca81161d0dcb5683954
-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 b2dd626f42b6..dea357949a07 100644 --- a/include/vcl/salnativewidgets.hxx +++ b/include/vcl/salnativewidgets.hxx @@ -447,6 +447,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; } }; |