Make TriState strings translatable.

This commit is contained in:
Felix Geyer 2012-10-21 15:11:09 +02:00
parent b17cb60b5c
commit 59da03d660

View file

@ -130,9 +130,9 @@ void EditGroupWidget::cancel()
void EditGroupWidget::addTriStateItems(QComboBox* comboBox) void EditGroupWidget::addTriStateItems(QComboBox* comboBox)
{ {
comboBox->addItem("Inherit"); comboBox->addItem(tr("Inherit"));
comboBox->addItem("Enable"); comboBox->addItem(tr("Enable"));
comboBox->addItem("Disable"); comboBox->addItem(tr("Disable"));
} }
int EditGroupWidget::indexFromTriState(Group::TriState triState) int EditGroupWidget::indexFromTriState(Group::TriState triState)