Index: app/table_model.cc |
=================================================================== |
--- app/table_model.cc (revision 70069) |
+++ app/table_model.cc (working copy) |
@@ -54,7 +54,7 @@ |
percent(0), |
min_visible_width(0), |
sortable(false) { |
- title = l10n_util::GetString(id); |
+ title = UTF16ToWide(l10n_util::GetStringUTF16(id)); |
} |
TableColumn::TableColumn(int id, Alignment alignment, int width, float percent) |
@@ -64,7 +64,7 @@ |
percent(percent), |
min_visible_width(0), |
sortable(false) { |
- title = l10n_util::GetString(id); |
+ title = UTF16ToWide(l10n_util::GetStringUTF16(id)); |
} |
// TableModel ----------------------------------------------------------------- |