summaryrefslogtreecommitdiff
path: root/svtools/source/control/tabbar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/tabbar.cxx')
-rw-r--r--svtools/source/control/tabbar.cxx15
1 files changed, 3 insertions, 12 deletions
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index 259036550741..11c2e938dd18 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -1016,10 +1016,7 @@ void TabBar::MouseButtonDown(const MouseEvent& rMEvt)
while (n < nCurPos)
{
auto pItem = mpImpl->mpItemList[n];
- if (n < nPos)
- bSelect = false;
- else
- bSelect = true;
+ bSelect = n >= nPos;
if (pItem->mbSelect != bSelect)
{
@@ -1043,10 +1040,7 @@ void TabBar::MouseButtonDown(const MouseEvent& rMEvt)
{
auto pItem = mpImpl->mpItemList[n];
- if (n <= nPos)
- bSelect = true;
- else
- bSelect = false;
+ bSelect = n <= nPos;
if (pItem->mbSelect != bSelect)
{
@@ -1777,10 +1771,7 @@ bool TabBar::IsPageEnabled(sal_uInt16 nPageId) const
{
sal_uInt16 nPos = GetPagePos(nPageId);
- if (nPos != PAGE_NOT_FOUND)
- return true;
- else
- return false;
+ return nPos != PAGE_NOT_FOUND;
}
void TabBar::SetPageBits(sal_uInt16 nPageId, TabBarPageBits nBits)