Commit 91b54cc3 authored by Dominik Charousset's avatar Dominik Charousset

forward ctor arguments to base class

parent f200901f
......@@ -47,6 +47,9 @@ class actor_widget_mixin : public actor_companion_mixin<Base> {
public:
template<typename... Args>
actor_widget_mixin(Args&&... args) : super(std::forward<Args>(args)...) { }
struct event_type : public QEvent {
message_pointer msg;
......
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