Use "Qt::WindowFlags flags = Qt::WindowFlags()" instead of "Qt::WindowFlags flags = 0"

This commit is contained in:
thunder2 2025-07-18 17:20:03 +02:00 committed by Thunder
parent e2e1a431ff
commit 3a8f7d5a2d
39 changed files with 39 additions and 39 deletions

View file

@ -44,7 +44,7 @@ public:
enum { DefaultDirection=0,Download=1 } ;
/** Default constructor */
BandwidthGraph(QWidget *parent = 0, Qt::WindowFlags flags = 0);
BandwidthGraph(QWidget *parent = 0, Qt::WindowFlags flags = Qt::WindowFlags());
virtual ~BandwidthGraph();
public slots: