Commit c3ebd01f authored by Hauke Goldhammer's avatar Hauke Goldhammer

Fix qt build error

parent 3393ef6e
...@@ -14,8 +14,8 @@ CAF_POP_WARNINGS ...@@ -14,8 +14,8 @@ CAF_POP_WARNINGS
using namespace std; using namespace std;
using namespace caf; using namespace caf;
ChatWidget::ChatWidget(QWidget* parent, Qt::WindowFlags f) ChatWidget::ChatWidget(QWidget* parent)
: super(parent, f), : super(parent),
input_(nullptr), input_(nullptr),
output_(nullptr) { output_(nullptr) {
// nop // nop
......
...@@ -29,7 +29,7 @@ public: ...@@ -29,7 +29,7 @@ public:
using super = caf::mixin::actor_widget<QWidget>; using super = caf::mixin::actor_widget<QWidget>;
ChatWidget(QWidget* parent = nullptr, Qt::WindowFlags f = 0); ChatWidget(QWidget* parent = nullptr);
~ChatWidget(); ~ChatWidget();
......
...@@ -26,6 +26,8 @@ CAF_PUSH_WARNINGS ...@@ -26,6 +26,8 @@ CAF_PUSH_WARNINGS
#include "ui_chatwindow.h" // auto generated from chatwindow.ui #include "ui_chatwindow.h" // auto generated from chatwindow.ui
CAF_POP_WARNINGS CAF_POP_WARNINGS
#include "chatwidget.hpp"
using namespace std; using namespace std;
using namespace caf; 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