diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-02 14:14:32 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-02 14:18:36 -0500 |
commit | 195cad96355f8d42b84b5c5c58bb4ed34cd77074 (patch) | |
tree | 0e979691769fd6430cff3c13bcfa935963f64a99 /src/yuzu/configuration/configure_web.h | |
parent | eabfb7730de3277cc12f870db2ecd5a6593aab11 (diff) |
yuzu/configuration: Make slots private where applicable
These slots are only ever attached to event handling mechanisms within
the class itself, they're never used externally. Because of this, we can
make the functions private.
This also removes redundant usages of the private access specifier.
Diffstat (limited to 'src/yuzu/configuration/configure_web.h')
-rw-r--r-- | src/yuzu/configuration/configure_web.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_web.h b/src/yuzu/configuration/configure_web.h index 61d8149f6..7752ae4a1 100644 --- a/src/yuzu/configuration/configure_web.h +++ b/src/yuzu/configuration/configure_web.h @@ -22,13 +22,12 @@ public: void applyConfiguration(); void retranslateUi(); -public slots: +private: void RefreshTelemetryID(); void OnLoginChanged(); void VerifyLogin(); void OnLoginVerified(); -private: void setConfiguration(); bool user_verified = true; |