mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-21 16:57:54 +00:00
common,qt-config: Remove usage of forward_list
This commit is contained in:
parent
1067bbf7b7
commit
cce6c6919c
21 changed files with 64 additions and 65 deletions
|
@ -3,8 +3,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <forward_list>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include <QString>
|
||||
#include <QWidget>
|
||||
#include <qobjectdefs.h>
|
||||
|
@ -17,7 +17,7 @@ class Tab : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit Tab(std::shared_ptr<std::forward_list<Tab*>> group, QWidget* parent = nullptr);
|
||||
explicit Tab(std::shared_ptr<std::vector<Tab*>> group, QWidget* parent = nullptr);
|
||||
~Tab();
|
||||
|
||||
virtual void ApplyConfiguration() = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue