diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-24 09:25:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-24 10:27:12 +0200 |
commit | 2c56d461633ff1a1b364685df79b521f8802c4ec (patch) | |
tree | b419b70f891398d39decdc17b7e4f5ae82d478fa /sw/source/ui/frmdlg/column.cxx | |
parent | a975225678c00272fc6e2ee2c85e6fe00a2204f1 (diff) |
clang-tidy readability-simplify-boolean-expr in sw
Change-Id: Ib3ec37b8280c527fa712192db043b348c3427c50
Reviewed-on: https://gerrit.libreoffice.org/36877
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui/frmdlg/column.cxx')
-rw-r--r-- | sw/source/ui/frmdlg/column.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx index 88f3ecbbea36..602227c588a3 100644 --- a/sw/source/ui/frmdlg/column.cxx +++ b/sw/source/ui/frmdlg/column.cxx @@ -861,7 +861,7 @@ void SwColumnPage::UpdateCols() const bool bEdit = !m_pAutoWidthBox->IsChecked(); if ( m_nCols > nVisCols ) { - bEnableBtns = true && !m_bHtmlMode; + bEnableBtns = !m_bHtmlMode; bEnable12 = bEnable3 = bEdit; } else if( bEdit ) |