Hello there,
Some suspicious code:
[kdelibs-4.14.35/kde3support/kdeui/k3listview.cpp:505]: (style) Same expression on both sides of '||'.
Source code is
if ( ca == Qt::AlignLeft || ca == Qt::AlignLeft ) {
Maybe better code
if ( ca == Qt::AlignLeft || ca == Qt::AlignRight ) {
Regards
David Binderman