Core/Source/GrowlPreferencePane.m
changeset 4188 71e205ca6b20
parent 4153 899d3019a60a
child 4189 30c4b669cad3
     1.1 --- a/Core/Source/GrowlPreferencePane.m	Mon Jul 28 21:53:02 2008 +0000
     1.2 +++ b/Core/Source/GrowlPreferencePane.m	Tue Apr 07 11:34:52 2009 -0700
     1.3 @@ -92,7 +92,7 @@
     1.4  	[versionCheckURL release];
     1.5  	[growlWebSiteURL release];
     1.6  	[growlForumURL release];
     1.7 -	[growlTracURL release];
     1.8 +	[growlBugSubmissionURL release];
     1.9  	[growlDonateURL release];
    1.10  	CFRelease(images);
    1.11  	[super dealloc];
    1.12 @@ -132,7 +132,7 @@
    1.13  
    1.14  	growlWebSiteURL = [[NSURL alloc] initWithString:@"http://growl.info"];
    1.15  	growlForumURL = [[NSURL alloc] initWithString:@"http://forums.cocoaforge.com/viewforum.php?f=6"];
    1.16 -	growlTracURL = [[NSURL alloc] initWithString:@"http://trac.growl.info"];
    1.17 +	growlBugSubmissionURL = [[NSURL alloc] initWithString:@"http://growl.info/reportabug.php"];
    1.18  	growlDonateURL = [[NSURL alloc] initWithString:@"http://growl.info/donate.php"];
    1.19  
    1.20  	customHistArray = CFArrayCreateMutable(kCFAllocatorDefault, 3, &kCFTypeArrayCallBacks);
    1.21 @@ -873,9 +873,9 @@
    1.22  	[[NSWorkspace sharedWorkspace] openURL:growlForumURL];
    1.23  }
    1.24  
    1.25 -- (IBAction) openGrowlTrac:(id)sender {
    1.26 +- (IBAction) openGrowlBugSubmissionPage:(id)sender {
    1.27  #pragma unused(sender)
    1.28 -	[[NSWorkspace sharedWorkspace] openURL:growlTracURL];
    1.29 +	[[NSWorkspace sharedWorkspace] openURL:growlBugSubmissionURL];
    1.30  }
    1.31  
    1.32  - (IBAction) openGrowlDonate:(id)sender {