adium/adium

Don't shadow the instance variable.

2013-06-02, Frank Dowsett
9d132aca3fb4
Parents c9a115801035
Children d651cb42808c
Don't shadow the instance variable.
--- a/Source/AINewContactWindowController.m Sun Jun 02 11:38:12 2013 -0400
+++ b/Source/AINewContactWindowController.m Sun Jun 02 11:38:54 2013 -0400
@@ -586,9 +586,9 @@
/*!
* @brief selector to select Group used by "Add Contact to Group"
*/
-- (void)selectGroupByName:(NSString *)groupName
+- (void)selectGroupByName:(NSString *)aGroupName
{
- [popUp_targetGroup selectItemWithTitle:groupName];
+ [popUp_targetGroup selectItemWithTitle:aGroupName];
}
/*!