Changeset 37 for trunk/orca/qt
- Timestamp:
- 02/09/06 15:37:17 (3 years ago)
- Location:
- trunk/orca/qt
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/qt/qorca.cpp
r25 r37 152 152 const char* mold( const OValue* val ) 153 153 { 154 orMold( this, val ); // Calls or CTermStr() for us.154 orMold( this, val ); // Calls orTermCStr() for us. 155 155 return charArray; 156 156 } … … 158 158 const char* form( const OValue* val ) 159 159 { 160 orForm( this, val ); // Calls or CTermStr() for us.160 orForm( this, val ); // Calls orTermCStr() for us. 161 161 return charArray; 162 162 } … … 301 301 { 302 302 OString* str = orSTRING( val ); 303 or CTermStr( str );303 orTermCStr( str ); 304 304 return orStrChars( str, val ); 305 305 } … … 841 841 OValue* ref = REF_RF_PATH; 842 842 str = orSTRING( ref ); 843 or CTermStr( str );843 orTermCStr( str ); 844 844 dir = orStrChars( str, ref ); 845 845 } … … 850 850 851 851 str = orSTRING(a1); 852 or CTermStr( str );852 orTermCStr( str ); 853 853 cp = orStrChars( str, a1 ); 854 854 … … 1093 1093 str1 = orSTRING(a1); 1094 1094 str2 = orSTRING(a2); 1095 or CTermStr( str1 );1096 or CTermStr( str2 );1095 orTermCStr( str1 ); 1096 orTermCStr( str2 ); 1097 1097 cp1 = orStrChars(str1, a1); 1098 1098 cp2 = orStrChars(str2, a2); -
trunk/orca/qt/qorca.h
r18 r37 209 209 { 210 210 OString* str = orSTRING( val ); 211 or CTermStr( str );211 orTermCStr( str ); 212 212 return orStrChars( str, val ); 213 213 }
