diff options
author | stuconnolly <stuart02@gmail.com> | 2009-01-27 18:11:30 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-01-27 18:11:30 +0000 |
commit | 22d4ade701411924f6419ec7d320bd39dfebe821 (patch) | |
tree | a978079b192f91ffefe34448610f33ea20e78c0f /Source | |
parent | 53d8462cf0922e36916012bf526f27457380b89f (diff) | |
download | sequelpro-22d4ade701411924f6419ec7d320bd39dfebe821.tar.gz sequelpro-22d4ade701411924f6419ec7d320bd39dfebe821.tar.bz2 sequelpro-22d4ade701411924f6419ec7d320bd39dfebe821.zip |
Point the menu links to Sequel Pro's website rather than the Goolge Code site.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/MainController.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/MainController.m b/Source/MainController.m index a041e8e1..597adc16 100644 --- a/Source/MainController.m +++ b/Source/MainController.m @@ -339,7 +339,7 @@ opens donate link in default browser */ - (IBAction)donate:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://code.google.com/p/sequel-pro/wiki/Donations"]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.sequelpro.com/donate.html"]]; } /* @@ -347,7 +347,7 @@ opens website link in default browser */ - (IBAction)visitWebsite:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://code.google.com/p/sequel-pro"]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.sequelpro.com/"]]; } /* @@ -355,7 +355,7 @@ opens help link in default browser */ - (IBAction)visitHelpWebsite:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://code.google.com/p/sequel-pro/wiki/FAQ"]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.sequelpro.com/frequently-asked-questions.html"]]; } /* |