diff options
author | Sebastian Valle <sebastianvalle@uninorte.edu.co> | 2019-05-19 15:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 15:42:39 +0200 |
commit | 256e5c9583d2caab6cb5480fe4a04b038a18263c (patch) | |
tree | 0989e140a0bdb24a38ae2e6c820ffe0a849d46c3 | |
parent | Merge pull request #2496 from lioncash/move-con (diff) | |
parent | yuzu/applets/profile_select: Mark header string as translatable (diff) | |
download | yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.gz yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.bz2 yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.lz yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.xz yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.zst yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.zip |
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 743b24d76..7fbc9deeb 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp @@ -84,10 +84,10 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent) tree_view->setContextMenuPolicy(Qt::NoContextMenu); item_model->insertColumns(0, 1); - item_model->setHeaderData(0, Qt::Horizontal, "Users"); + item_model->setHeaderData(0, Qt::Horizontal, tr("Users")); // We must register all custom types with the Qt Automoc system so that we are able to use it - // with signals/slots. In this case, QList falls under the umbrells of custom types. + // with signals/slots. In this case, QList falls under the umbrella of custom types. qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>"); layout->setContentsMargins(0, 0, 0, 0); |