Changeset 3774

Show
Ignore:
Timestamp:
01/19/08 00:44:18 (9 months ago)
Author:
timothy
Message:

Change the typedefs of MVChatString to #defines. Patch by eridius. Fixes #1179.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Chat Core/MVChatString.h

    r3735 r3774  
    44 
    55#if( defined(USE_ATTRIBUTED_CHAT_STRING) && USE_ATTRIBUTED_CHAT_STRING ) 
    6 typedef NSAttributedString MVChatString; 
     6#define MVChatString NSAttributedString 
    77#elif( defined(USE_PLAIN_CHAT_STRING) && USE_PLAIN_CHAT_STRING ) 
    8 typedef NSString MVChatString; 
     8#define MVChatString NSString 
    99#endif