Adium

Ticket #10118: adium-fix.diff

File adium-fix.diff, 0.8 kB (added by jorj, 5 months ago)

simple patch

  • Frameworks/Adium

    old new  
    11101110/** 
    11111111 * @brief Sets the status message to the NSAttributedString message 
    11121112 */ 
     1113 
    11131114- (void)setScriptingStatusMessageWithAttributedString:(NSString *)message 
    11141115{ 
    11151116        AIStatus *currentStatus = [self createMutableCopyOfCurrentStatusIfBuiltIn]; 
     
    11201121        [[adium statusController] setActiveStatusState:currentStatus forAccount:self]; 
    11211122} 
    11221123 
     1124- (void)setScriptingStatusMessage:(NSString *)message 
     1125{ 
     1126  [self setScriptingStatusMessageWithAttributedString:message]; 
     1127} 
     1128 
    11231129/** 
    11241130 * @brief Sets the status message to a NSAttributedString extracted of a NSScriptCommand 
    11251131 */