Skip to content
Snippets Groups Projects
Commit 438739b7 authored by Raul Radu's avatar Raul Radu
Browse files

[SubscriptionsPanel] Small Rework on API

parent 76b4c28d
No related branches found
No related tags found
1 merge request!43[Codebase] Refactoring with smart pointers and changed implementation of Message Broker
......@@ -28,8 +28,10 @@
using namespace std;
SubscriptionsPanel::SubscriptionsPanel()
SubscriptionsPanel::SubscriptionsPanel() : QWidget(nullptr)
{
resize({500, 200});
setWindowTitle("Subscriptions panel");
setupUi();
}
......@@ -40,12 +42,8 @@ SubscriptionsPanel::SubscriptionsPanel(const QList<Filter>& filters)
}
SubscriptionsPanel::SubscriptionsPanel(const std::list<Filter>& filters)
: QWidget(nullptr)
: SubscriptionsPanel()
{
resize({500, 200});
setWindowTitle("Subscriptions panel");
setupUi();
setFilters(filters);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment