mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-23 02:18:04 -05:00
configuration: Add const qualifier where able
This commit is contained in:
@ -31,7 +31,7 @@ class ConfigureProfileManager : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureProfileManager(Core::System& system_, QWidget* parent = nullptr);
|
||||
explicit ConfigureProfileManager(const Core::System& system_, QWidget* parent = nullptr);
|
||||
~ConfigureProfileManager() override;
|
||||
|
||||
void ApplyConfiguration();
|
||||
@ -63,5 +63,5 @@ private:
|
||||
|
||||
std::unique_ptr<Service::Account::ProfileManager> profile_manager;
|
||||
|
||||
Core::System& system;
|
||||
const Core::System& system;
|
||||
};
|
||||
|
Reference in New Issue
Block a user