qt5: Use Qt::WindowFlags instead of Qt::WFlags

This commit is contained in:
Vincent van Ravesteijn 2012-11-10 13:34:45 +01:00
parent 6e227f18ae
commit ce8d52f813
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
#include <QPaintEvent>
GuiSetBorder::GuiSetBorder(QWidget * parent, Qt::WFlags fl)
GuiSetBorder::GuiSetBorder(QWidget * parent, Qt::WindowFlags fl)
: QWidget(parent, fl), buffer(75, 75)
{
/* length of corner line */

View File

@ -26,7 +26,7 @@ class GuiSetBorder : public QWidget
{
Q_OBJECT
public:
GuiSetBorder(QWidget * parent = 0, Qt::WFlags fl = 0);
GuiSetBorder(QWidget * parent = 0, Qt::WindowFlags fl = 0);
bool getLeft();
bool getRight();