summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Sebastian Valle2019-05-19 08:42:39 -0500
committerGravatar GitHub2019-05-19 08:42:39 -0500
commit256e5c9583d2caab6cb5480fe4a04b038a18263c (patch)
tree0989e140a0bdb24a38ae2e6c820ffe0a849d46c3 /src
parentMerge pull request #2496 from lioncash/move-con (diff)
parentyuzu/applets/profile_select: Mark header string as translatable (diff)
downloadyuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.gz
yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.tar.xz
yuzu-256e5c9583d2caab6cb5480fe4a04b038a18263c.zip
Merge pull request #2493 from lioncash/translate
yuzu/applets/profile_select: Mark header string as translatable
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/applets/profile_select.cpp4
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)
84 tree_view->setContextMenuPolicy(Qt::NoContextMenu); 84 tree_view->setContextMenuPolicy(Qt::NoContextMenu);
85 85
86 item_model->insertColumns(0, 1); 86 item_model->insertColumns(0, 1);
87 item_model->setHeaderData(0, Qt::Horizontal, "Users"); 87 item_model->setHeaderData(0, Qt::Horizontal, tr("Users"));
88 88
89 // We must register all custom types with the Qt Automoc system so that we are able to use it 89 // We must register all custom types with the Qt Automoc system so that we are able to use it
90 // with signals/slots. In this case, QList falls under the umbrells of custom types. 90 // with signals/slots. In this case, QList falls under the umbrella of custom types.
91 qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>"); 91 qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>");
92 92
93 layout->setContentsMargins(0, 0, 0, 0); 93 layout->setContentsMargins(0, 0, 0, 0);