Commit c3ebd01f authored by Hauke Goldhammer's avatar Hauke Goldhammer

Fix qt build error

parent 3393ef6e
......@@ -14,8 +14,8 @@ CAF_POP_WARNINGS
using namespace std;
using namespace caf;
ChatWidget::ChatWidget(QWidget* parent, Qt::WindowFlags f)
: super(parent, f),
ChatWidget::ChatWidget(QWidget* parent)
: super(parent),
input_(nullptr),
output_(nullptr) {
// nop
......
......@@ -29,7 +29,7 @@ public:
using super = caf::mixin::actor_widget<QWidget>;
ChatWidget(QWidget* parent = nullptr, Qt::WindowFlags f = 0);
ChatWidget(QWidget* parent = nullptr);
~ChatWidget();
......
......@@ -26,6 +26,8 @@ CAF_PUSH_WARNINGS
#include "ui_chatwindow.h" // auto generated from chatwindow.ui
CAF_POP_WARNINGS
#include "chatwidget.hpp"
using namespace std;
using namespace caf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment