mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 05:27:50 +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
|
@ -28,7 +28,7 @@ class ConfigureGeneral : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureGeneral(Core::System& system_, QWidget* parent = nullptr);
|
||||
explicit ConfigureGeneral(const Core::System& system_, QWidget* parent = nullptr);
|
||||
~ConfigureGeneral() override;
|
||||
|
||||
void SetResetCallback(std::function<void()> callback);
|
||||
|
@ -49,5 +49,5 @@ private:
|
|||
ConfigurationShared::CheckState use_speed_limit;
|
||||
ConfigurationShared::CheckState use_multi_core;
|
||||
|
||||
Core::System& system;
|
||||
const Core::System& system;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue