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.
This commit is contained in:
Lioncash 2018-12-02 14:14:32 -05:00
parent 3f0b65b93c
commit 963fd343ac
5 changed files with 2 additions and 7 deletions

View file

@ -23,6 +23,5 @@ public:
private:
void setConfiguration();
private:
std::unique_ptr<Ui::ConfigureDebug> ui;
};