summaryrefslogtreecommitdiff
path: root/vcl/unx/x11
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-06 07:44:11 +0200
committerNoel Grandin <noel@peralex.com>2014-05-06 07:45:25 +0200
commit794f09f195a449e387ebfbd53eb1b693803c95e7 (patch)
tree4c82e01015ccac094261060021b49757dab12f19 /vcl/unx/x11
parent3f569908ac72c20826a45ebed59af9b1e5449207 (diff)
simplify ternary conditions "xxx ? true : yyy"
Look for code like: xxx ? true : yyy; Which can be simplified to: xxx || yyy Change-Id: Ib7ca86580bfd0cf04674328a3c0cf3747de4758d
Diffstat (limited to 'vcl/unx/x11')
-rw-r--r--vcl/unx/x11/x11sys.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/x11/x11sys.cxx b/vcl/unx/x11/x11sys.cxx
index add2b60384b8..9749cfc74e4e 100644
--- a/vcl/unx/x11/x11sys.cxx
+++ b/vcl/unx/x11/x11sys.cxx
@@ -52,7 +52,7 @@ bool X11SalSystem::IsUnifiedDisplay()
{
SalDisplay* pSalDisp = GetGenericData()->GetSalDisplay();
unsigned int nScreenCount = pSalDisp->GetXScreenCount();
- return pSalDisp->IsXinerama() ? true : (nScreenCount == 1);
+ return pSalDisp->IsXinerama() || (nScreenCount == 1);
}
unsigned int X11SalSystem::GetDisplayBuiltInScreen()