Changeset 37 for trunk/orca/qt

Show
Ignore:
Timestamp:
02/09/06 15:37:17 (3 years ago)
Author:
krobillard
Message:

Added a few member access macros.
Renamed orCTermStr as orTermCStr.

Location:
trunk/orca/qt
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/qt/qorca.cpp

    r25 r37  
    152152    const char* mold( const OValue* val ) 
    153153    { 
    154         orMold( this, val );    // Calls orCTermStr() for us. 
     154        orMold( this, val );    // Calls orTermCStr() for us. 
    155155        return charArray; 
    156156    } 
     
    158158    const char* form( const OValue* val ) 
    159159    { 
    160         orForm( this, val );    // Calls orCTermStr() for us. 
     160        orForm( this, val );    // Calls orTermCStr() for us. 
    161161        return charArray; 
    162162    } 
     
    301301{ 
    302302    OString* str = orSTRING( val ); 
    303     orCTermStr( str ); 
     303    orTermCStr( str ); 
    304304    return orStrChars( str, val ); 
    305305} 
     
    841841        OValue* ref = REF_RF_PATH; 
    842842        str = orSTRING( ref ); 
    843         orCTermStr( str ); 
     843        orTermCStr( str ); 
    844844        dir = orStrChars( str, ref ); 
    845845    } 
     
    850850 
    851851    str = orSTRING(a1); 
    852     orCTermStr( str ); 
     852    orTermCStr( str ); 
    853853    cp = orStrChars( str, a1 ); 
    854854 
     
    10931093    str1 = orSTRING(a1); 
    10941094    str2 = orSTRING(a2); 
    1095     orCTermStr( str1 ); 
    1096     orCTermStr( str2 ); 
     1095    orTermCStr( str1 ); 
     1096    orTermCStr( str2 ); 
    10971097    cp1 = orStrChars(str1, a1); 
    10981098    cp2 = orStrChars(str2, a2); 
  • trunk/orca/qt/qorca.h

    r18 r37  
    209209{ 
    210210    OString* str = orSTRING( val ); 
    211     orCTermStr( str ); 
     211    orTermCStr( str ); 
    212212    return orStrChars( str, val ); 
    213213}