adium-1.4 3284:a60a31bca8c8: Resolved a couple warnings
commits at adium.im
commits at adium.im
Mon Nov 22 00:37:32 UTC 2010
details: http://hg.adium.im/adium-1.4/rev/a60a31bca8c8
revision: 3284:a60a31bca8c8
author: Evan Schoenberg
date: Sun Nov 21 18:32:33 2010 -0600
Resolved a couple warnings
Subject: adium-1.4 3285:9e8f980008eb: Fix selection of the active voice in the Speak Event and Speak Text contact alert actions, which was broken in [896a4607f62f] (4/29/09) and first reported 5 days ago. So much for many eyes.. Fixes #14574
details: http://hg.adium.im/adium-1.4/rev/9e8f980008eb
revision: 3285:9e8f980008eb
author: Evan Schoenberg
date: Sun Nov 21 18:37:25 2010 -0600
Fix selection of the active voice in the Speak Event and Speak Text contact alert actions, which was broken in [896a4607f62f] (4/29/09) and first reported 5 days ago. So much for many eyes.. Fixes #14574
diffs (54 lines):
diff -r f1997d7125f5 -r 9e8f980008eb Plugins/Purple Service/CBPurpleAccount.h
--- a/Plugins/Purple Service/CBPurpleAccount.h Wed Nov 17 22:20:06 2010 -0600
+++ b/Plugins/Purple Service/CBPurpleAccount.h Sun Nov 21 18:37:25 2010 -0600
@@ -216,5 +216,5 @@
@end
@interface CBPurpleAccount (ForSubclasses)
-- (void)continueConnectWithConfiguredPurpleAccoun;
+- (void)continueConnectWithConfiguredPurpleAccount;
@end
diff -r f1997d7125f5 -r 9e8f980008eb Plugins/Purple Service/CBPurpleAccount.m
--- a/Plugins/Purple Service/CBPurpleAccount.m Wed Nov 17 22:20:06 2010 -0600
+++ b/Plugins/Purple Service/CBPurpleAccount.m Sun Nov 21 18:37:25 2010 -0600
@@ -82,7 +82,6 @@
- (void)_receivedMessage:(NSAttributedString *)attributedMessage inChat:(AIChat *)chat fromListContact:(AIListContact *)sourceContact flags:(PurpleMessageFlags)flags date:(NSDate *)date;
- (NSNumber *)shouldCheckMail;
- (void)configurePurpleAccountNotifyingTarget:(id)target selector:(SEL)selector;
-- (void)continueConnectWithConfiguredPurpleAccount;
- (void)continueConnectWithConfiguredProxy;
- (void)continueRegisterWithConfiguredPurpleAccount;
- (void)promptForHostBeforeConnecting;
diff -r f1997d7125f5 -r 9e8f980008eb Plugins/Purple Service/adiumPurpleCore.m
--- a/Plugins/Purple Service/adiumPurpleCore.m Wed Nov 17 22:20:06 2010 -0600
+++ b/Plugins/Purple Service/adiumPurpleCore.m Sun Nov 21 18:37:25 2010 -0600
@@ -40,6 +40,7 @@
#warning This include and the jabber_auth_add_mech() will be part of the FacebookXMPP account's initialization
#import "auth.h"
+#import "auth_fb.h"
#pragma mark Debug
diff -r f1997d7125f5 -r 9e8f980008eb Plugins/Purple Service/libpurple_extensions/auth_fb.h
--- a/Plugins/Purple Service/libpurple_extensions/auth_fb.h Wed Nov 17 22:20:06 2010 -0600
+++ b/Plugins/Purple Service/libpurple_extensions/auth_fb.h Sun Nov 21 18:37:25 2010 -0600
@@ -1,4 +1,4 @@
#include "jabber.h"
#include "auth.h"
-JabberSaslMech *jabber_auth_get_fb_mech(void)
\ No newline at end of file
+JabberSaslMech *jabber_auth_get_fb_mech(void);
diff -r f1997d7125f5 -r 9e8f980008eb Source/ESAnnouncerAbstractDetailPane.m
--- a/Source/ESAnnouncerAbstractDetailPane.m Wed Nov 17 22:20:06 2010 -0600
+++ b/Source/ESAnnouncerAbstractDetailPane.m Sun Nov 21 18:37:25 2010 -0600
@@ -63,7 +63,7 @@
speakContactName = [[inDetails objectForKey:KEY_ANNOUNCER_SENDER] boolValue];
if ((voice = [inDetails objectForKey:KEY_VOICE_STRING])) {
- [popUp_voices selectItemWithTitle:voice];
+ [popUp_voices selectItemWithRepresentedObject:voice];
} else {
[popUp_voices selectItemAtIndex:0]; //"Default"
}
More information about the commits
mailing list