diff options
Diffstat (limited to 'app/l10n_util.h')
-rw-r--r-- | app/l10n_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/l10n_util.h b/app/l10n_util.h index 57fd690..1e20984 100644 --- a/app/l10n_util.h +++ b/app/l10n_util.h @@ -183,13 +183,13 @@ string16 GetStringFUTF16(int message_id, const string16& b, std::vector<size_t>* offsets); -// Convenience formatters for a single number. +// Convenience functions to get a string with a single number as a parameter. #if CRBUG_9911_OBSOLETE_GOING_AWAY std::wstring GetStringF(int message_id, int a); std::wstring GetStringF(int message_id, int64 a); #endif -string16 GetStringFUTF16(int message_id, int a); -string16 GetStringFUTF16(int message_id, int64 a); +string16 GetStringFUTF16Int(int message_id, int a); +string16 GetStringFUTF16Int(int message_id, int64 a); // Truncates the string to length characters. This breaks the string at // the first word break before length, adding the horizontal ellipsis |