Changeset 1960
- Timestamp:
- 04/05/07 18:35:31 (2 years ago)
- Files:
-
- trunk/include/VBox/com/string.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/com/string.h
r1220 r1960 246 246 * a null object will be created. 247 247 */ 248 Utf8Str (size_t aSize) : str (NULL)248 alloc (size_t aSize) 249 249 { 250 250 if (aSize) … … 258 258 str [0] = 0; 259 259 } 260 } 261 262 Utf8Str (size_t aSize) : str (NULL) 263 { 264 alloc(aSize); 260 265 } 261 266

