adium 2320:6f95c922d0a9: Truth in comments.
commits at adium.im
commits at adium.im
Mon May 25 17:47:59 UTC 2009
details: http://hg.adium.im/adium/rev/6f95c922d0a9
revision: 2320:6f95c922d0a9
author: Peter Hosey
date: Mon May 18 11:20:14 2009 -0700
Truth in comments.
Apparently, I forgot to push this before. Oops.
Subject: adium 2321:73308817d05d: Use the correct noun: effect (result of an action), not affect (psychological state).
details: http://hg.adium.im/adium/rev/73308817d05d
revision: 2321:73308817d05d
author: Peter Hosey <hg at boredzo.org>
date: Mon May 25 10:47:32 2009 -0700
Use the correct noun: effect (result of an action), not affect (psychological state).
diffstat:
ChangeLogs/Changes Between Betas.txt | 4 ++--
Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (42 lines):
diff -r 2b5f4cdecaf4 -r 73308817d05d ChangeLogs/Changes Between Betas.txt
--- a/ChangeLogs/Changes Between Betas.txt Mon May 25 13:09:58 2009 -0400
+++ b/ChangeLogs/Changes Between Betas.txt Mon May 25 10:47:32 2009 -0700
@@ -1,5 +1,5 @@
Adium 1.4 b3
- * Changed behavior for account options: a lot were only changing when reconnecting, now all that are able to (i.e., non-connect options) take affect immediately.
+ * Changed behavior for account options: a lot were only changing when reconnecting, now all that are able to (i.e., non-connect options) take effect immediately.
* Moved the Status Menu Item and Dock preferences to a new "Message Alerts" advanced preference.
* Clarified the option to only count the number of highlights/mentions in the dock/status menu item in its wording. (#12080)
* Status icon packs can now specify "Idle And Away" icons to use for contacts. (#872)
@@ -9,4 +9,4 @@
* Fixed the voiceover for certain fields in the authorization requests window.
* Fixed idle time not being reported.
* Fixed the stepper values in the Status preferences and Status Edit window always starting at 10. (#12188)
- * Moved dock preferences from Messages to Message Alerts in the Advanced preferences.
\ No newline at end of file
+ * Moved dock preferences from Messages to Message Alerts in the Advanced preferences.
diff -r 2b5f4cdecaf4 -r 73308817d05d Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m
--- a/Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m Mon May 25 13:09:58 2009 -0400
+++ b/Frameworks/Adium Framework/Source/AIAddressBookUserIconSource.m Mon May 25 10:47:32 2009 -0700
@@ -204,17 +204,17 @@
previousValue = [trackingDict objectForKey:tagNumber];
if ([previousValue isKindOfClass:[AIListObject class]]) {
- //If the old value is just a listObject, create an array with the old object
+ //If the old value is just a listObject, create a mutable set with the old object
//and the new object
if (previousValue != inObject) {
objectSet = [NSMutableSet setWithObjects:previousValue,inObject,nil];
- //Store the array in the tracking dict
+ //Store the set in the tracking dict
[trackingDict setObject:objectSet forKey:tagNumber];
}
- } else /*if ([previousValue isKindOfClass:[NSMutableArray class]])*/{
- //Add the new object to the previously-created array
+ } else /*if ([previousValue isKindOfClass:[NSMutableSet class]])*/{
+ //Add the new object to the previously-created set
[(NSMutableSet *)previousValue addObject:inObject];
}
More information about the commits
mailing list