Changeset 745 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
- Timestamp:
- Sep 10, 2008, 1:53:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp
r735 r745 76 76 77 77 return globalAreaProcName; 78 } 79 80 int Compiler::AddStringToDataTable( const std::string &text ) 81 { 82 if( this->IsUnicode() ) 83 { 84 return this->GetObjectModule().dataTable.AddWString( Jenga::Common::ToWString( text ) ); 85 } 86 else 87 { 88 return this->GetObjectModule().dataTable.AddString( text ); 89 } 78 90 } 79 91
Note:
See TracChangeset
for help on using the changeset viewer.