diff options
author | stuconnolly <stuart02@gmail.com> | 2009-12-11 01:01:04 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-12-11 01:01:04 +0000 |
commit | ad93154f88120c37081fc9f816b25a9410b3b89c (patch) | |
tree | 88435d6e12da7b466bd7d810efe15f0ab29b8cdb /Source/SPAppController.m | |
parent | 2f490fa3f4030c71aab8a1cafd9514a3fff2c6c4 (diff) | |
download | sequelpro-ad93154f88120c37081fc9f816b25a9410b3b89c.tar.gz sequelpro-ad93154f88120c37081fc9f816b25a9410b3b89c.tar.bz2 sequelpro-ad93154f88120c37081fc9f816b25a9410b3b89c.zip |
Convert URL constants from #define's to extern's.
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r-- | Source/SPAppController.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 62255501..fb497621 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -363,7 +363,7 @@ */ - (IBAction)donate:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SEQUEL_PRO_DONATIONS_URL]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPDonationsURL]]; } /** @@ -371,7 +371,7 @@ */ - (IBAction)visitWebsite:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SEQUEL_PRO_HOME_PAGE_URL]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPHomePageURL]]; } /** @@ -379,7 +379,7 @@ */ - (IBAction)visitHelpWebsite:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SEQUEL_PRO_DOCS_URL]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPDocumentationURL]]; } /** @@ -387,7 +387,7 @@ */ - (IBAction)visitFAQWebsite:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SEQUEL_PRO_FAQ_URL]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPFAQURL]]; } /** @@ -395,7 +395,7 @@ */ - (IBAction)provideFeedback:(id)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SEQUEL_PRO_CONTACT_URL]]; + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:SPContactURL]]; } #pragma mark - |