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)
{
comboBox->addItem("Inherit");
comboBox->addItem("Enable");
comboBox->addItem("Disable");
comboBox->addItem(tr("Inherit"));
comboBox->addItem(tr("Enable"));
comboBox->addItem(tr("Disable"));
}
int EditGroupWidget::indexFromTriState(Group::TriState triState)