Fix a bug : Categories were not translated in GridAccount

This commit is contained in:
2012-03-20 14:50:37 +01:00
parent 223106fbfc
commit 391dc12304
2 changed files with 6 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ GridAccount::GridAccount(KissCount* kiss, QWidget *parent,
categoryIt != user->_categories.end();
categoryIt++, i++)
{
_categories[i] = categoryIt->name ;
_categories[i] = _(categoryIt->name.toStdString().c_str()) ;
}
resizeColumnToContents(TREE);