mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 06:15:46 +00:00
configuration: Add const qualifier where able
This commit is contained in:
parent
3aec34df0a
commit
6405a2a989
18 changed files with 28 additions and 31 deletions
|
@ -19,7 +19,7 @@ class ConfigureDebug : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureDebug(Core::System& system_, QWidget* parent = nullptr);
|
||||
explicit ConfigureDebug(const Core::System& system_, QWidget* parent = nullptr);
|
||||
~ConfigureDebug() override;
|
||||
|
||||
void ApplyConfiguration();
|
||||
|
@ -32,5 +32,5 @@ private:
|
|||
|
||||
std::unique_ptr<Ui::ConfigureDebug> ui;
|
||||
|
||||
Core::System& system;
|
||||
const Core::System& system;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue