mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 03:37:49 +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
|
@ -23,7 +23,7 @@ class ConfigureAudio : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureAudio(Core::System& system_, QWidget* parent = nullptr);
|
||||
explicit ConfigureAudio(const Core::System& system_, QWidget* parent = nullptr);
|
||||
~ConfigureAudio() override;
|
||||
|
||||
void ApplyConfiguration();
|
||||
|
@ -46,5 +46,5 @@ private:
|
|||
|
||||
std::unique_ptr<Ui::ConfigureAudio> ui;
|
||||
|
||||
Core::System& system;
|
||||
const Core::System& system;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue