diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-16 22:43:33 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-16 23:43:34 -0400 |
commit | e2d8be1ca2cee27eb17964dd99c71dfd12431506 (patch) | |
tree | a1b92b6e3979373c1fb034e012fb1e9051ecf3db /src/yuzu/applets/profile_select.cpp | |
parent | fc5df84581c826525c158c234cefa6c2cf1d84e8 (diff) |
General: Resolve warnings related to missing declarations
Diffstat (limited to 'src/yuzu/applets/profile_select.cpp')
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 6aff38735..4bc8ee726 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp @@ -17,6 +17,7 @@ #include "yuzu/applets/profile_select.h" #include "yuzu/main.h" +namespace { QString FormatUserEntryText(const QString& username, Common::UUID uuid) { return QtProfileSelectionDialog::tr( "%1\n%2", "%1 is the profile username, %2 is the formatted UUID (e.g. " @@ -41,6 +42,7 @@ QPixmap GetIcon(Common::UUID uuid) { return icon.scaled(64, 64, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); } +} // Anonymous namespace QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent) : QDialog(parent), profile_manager(std::make_unique<Service::Account::ProfileManager>()) { |