Ticket #2086: Archivable.diff
File Archivable.diff, 659 bytes (added by , 17 years ago) |
---|
-
src/kits/support/Archivable.cpp
72 72 73 73 BString name; 74 74 Demangle(typeid(*this).name(), name); 75 if (name == "BPrivate::_BTextInput_") { 76 name = "_BTextInput_"; 77 } 75 78 76 79 return into->AddString(B_CLASS_FIELD, name); 77 80 } … … 400 403 int count = 0; 401 404 string origName(name); 402 405 vector<string> spacenames; 406 407 if (origName == "_BTextInput_") { 408 origName = "BPrivate::_BTextInput_"; 409 } 403 410 404 411 string::size_type pos = 0; 405 412 string::size_type oldpos = 0;