Patch from Marco Zehe to fix tables not being declared as such via VoiceOver. Fixes #16085. Thanks! adium-1.5.3
authorRobert Vehse
Wed, 01 Aug 2012 17:56:54 +0200
branchadium-1.5.3
changeset 4937882f631d2f4e
parent 4936 d6516b54462b
child 4938 339df1349d5e
Patch from Marco Zehe to fix tables not being declared as such via VoiceOver. Fixes #16085. Thanks!
ChangeLogs/Changes.txt
Copyright.txt
Frameworks/Adium Framework/Source/AIAuthorizationRequestsWindowController.m
Source/AIAccountListPreferences.m
Source/AILogViewerWindowController.m
Source/ESStatusPreferences.m
     1.1 --- a/ChangeLogs/Changes.txt	Wed Aug 01 17:48:15 2012 +0200
     1.2 +++ b/ChangeLogs/Changes.txt	Wed Aug 01 17:56:54 2012 +0200
     1.3 @@ -5,6 +5,7 @@
     1.4   * Fixed a problem with iTunes 10.6.3 on Mac OS X 10.6.8 causing the chat window's toolbar to break. (#16046)
     1.5   * Fixed an issue that caused logging in to Facebook to fail when login approvals are enabled. (#15705)
     1.6   * Icons set for group chat bookmarks will now show up on the tab bar in the chat window. (Andreas Marienborg) (#14484)
     1.7 + * Fixed tables not being declared as such via VoiceOver. (Marco Zehe) (#16085)
     1.8   * Improved memory use slightly.
     1.9  
    1.10  Version 1.5.2 (7/21/2012)
     2.1 --- a/Copyright.txt	Wed Aug 01 17:48:15 2012 +0200
     2.2 +++ b/Copyright.txt	Wed Aug 01 17:56:54 2012 +0200
     2.3 @@ -118,6 +118,7 @@
     2.4  Jay Weatherstone
     2.5  Robby Weinberg
     2.6  Ofri Wolfus
     2.7 +Marco Zehe
     2.8  Albert Zeyer
     2.9  
    2.10  If you have contributed to Adium and are not on this list, please contact us.
     3.1 --- a/Frameworks/Adium Framework/Source/AIAuthorizationRequestsWindowController.m	Wed Aug 01 17:48:15 2012 +0200
     3.2 +++ b/Frameworks/Adium Framework/Source/AIAuthorizationRequestsWindowController.m	Wed Aug 01 17:56:54 2012 +0200
     3.3 @@ -108,7 +108,7 @@
     3.4  											   object:self.window];
     3.5  	
     3.6  	[tableView accessibilitySetOverrideValue:AILocalizedString(@"Authorization Requests", nil)
     3.7 -								forAttribute:NSAccessibilityRoleDescriptionAttribute];
     3.8 +								forAttribute:NSAccessibilityTitleAttribute];
     3.9  	[tableView selectRowIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO];
    3.10  	
    3.11  	[self.window setTitle:AUTHORIZATION_REQUESTS];
     4.1 --- a/Source/AIAccountListPreferences.m	Wed Aug 01 17:48:15 2012 +0200
     4.2 +++ b/Source/AIAccountListPreferences.m	Wed Aug 01 17:56:54 2012 +0200
     4.3 @@ -138,7 +138,7 @@
     4.4  									 object:nil];
     4.5  	
     4.6  	[tableView_accountList accessibilitySetOverrideValue:AILocalizedString(@"Accounts", nil)
     4.7 -											forAttribute:NSAccessibilityRoleDescriptionAttribute];
     4.8 +											forAttribute:NSAccessibilityTitleAttribute];
     4.9  
    4.10  	// Start updating the reconnect time if an account is already reconnecting.	
    4.11  	[self updateReconnectTime:nil];
     5.1 --- a/Source/AILogViewerWindowController.m	Wed Aug 01 17:48:15 2012 +0200
     5.2 +++ b/Source/AILogViewerWindowController.m	Wed Aug 01 17:56:54 2012 +0200
     5.3 @@ -410,9 +410,9 @@
     5.4  	[textField_resultCount setStringValue:@""];
     5.5  
     5.6  	[tableView_results accessibilitySetOverrideValue:AILocalizedString(@"Transcripts", nil)
     5.7 -										forAttribute:NSAccessibilityRoleDescriptionAttribute];
     5.8 +										forAttribute:NSAccessibilityTitleAttribute];
     5.9  	[outlineView_contacts accessibilitySetOverrideValue:AILocalizedString(@"Contacts", nil)
    5.10 -										forAttribute:NSAccessibilityRoleDescriptionAttribute];
    5.11 +										forAttribute:NSAccessibilityTitleAttribute];
    5.12  
    5.13  	//Set emoticon filtering
    5.14  	showEmoticons = [[adium.preferenceController preferenceForKey:KEY_LOG_VIEWER_EMOTICONS
     6.1 --- a/Source/ESStatusPreferences.m	Wed Aug 01 17:48:15 2012 +0200
     6.2 +++ b/Source/ESStatusPreferences.m	Wed Aug 01 17:56:54 2012 +0200
     6.3 @@ -85,7 +85,7 @@
     6.4  	[outlineView_stateList setUsesAlternatingRowBackgroundColors:YES];
     6.5  	
     6.6  	[outlineView_stateList accessibilitySetOverrideValue:AILocalizedString(@"Statuses", nil)
     6.7 -											forAttribute:NSAccessibilityRoleDescriptionAttribute];
     6.8 +											forAttribute:NSAccessibilityTitleAttribute];
     6.9  
    6.10  	/* Register as an observer of state array changes so we can refresh our list
    6.11  	 * in response to changes. */