Adium

Changeset 24387

Show
Ignore:
Timestamp:
07/16/2008 08:04:52 PM (5 months ago)
Author:
applmak
Message:

Fixed a bug in setting the message of an existing status. Closes #10118.

This is a patch from jorj. Thank you!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/Adium Framework/Source/AIAccount.m

    r24210 r24387  
    11111111 * @brief Sets the status message to the NSAttributedString message 
    11121112 */ 
     1113 
    11131114- (void)setScriptingStatusMessageWithAttributedString:(NSString *)message 
    11141115{ 
     
    11191120                [currentStatus setStatusMessageString:message]; 
    11201121        [[adium statusController] setActiveStatusState:currentStatus forAccount:self]; 
     1122} 
     1123 
     1124- (void)setScriptingStatusMessage:(NSString *)message 
     1125{ 
     1126  [self setScriptingStatusMessageWithAttributedString:message]; 
    11211127} 
    11221128