Changeset 700 in dev for trunk/ab5.0/abdev/ab_common/src/Lexical/Namespace.cpp
- Timestamp:
- Jul 21, 2008, 1:04:12 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/Namespace.cpp
r669 r700 67 67 } 68 68 69 lstrcpy( namespaceStr, namespaceScopes.ToString().c_str() );69 strcpy( namespaceStr, namespaceScopes.ToString().c_str() ); 70 70 71 71 bool hasNamespace = false; … … 79 79 } 80 80 81 lstrcpy( simpleName, fullName + lstrlen( namespaceStr ) + dotLength );81 strcpy( simpleName, fullName + strlen( namespaceStr ) + dotLength ); 82 82 } 83 83
Note:
See TracChangeset
for help on using the changeset viewer.