Changeset 4129
- Timestamp:
- 08/13/07 13:55:12 (1 year ago)
- Files:
-
- trunk/include/VBox/com/string.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/com/string.h
r4071 r4129 507 507 * 508 508 * @param format printf-like format string (in UTF-8 encoding) 509 * @param args list of arguments for the format string 510 */ 511 explicit Utf8StrFmt (const char *format, va_list args) { init (format, args); } 512 513 /** 514 * Constructs a new string given the format string and the list 515 * of the arguments for the format string. 516 * 517 * @param format printf-like format string (in UTF-8 encoding) 509 518 * @param ... list of the arguments for the format string 510 519 * … … 522 531 } 523 532 524 /**525 * Constructs a new string given the format string and the list526 * of the arguments for the format string.527 *528 * @param format printf-like format string (in UTF-8 encoding)529 * @param args list of arguments for the format string530 */531 Utf8StrFmt (const char *format, va_list args) { init (format, args); }532 533 533 private: 534 534

