From 9679cb57a823ddf284a55cb1ebd62a509b186e4d Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Fri, 23 Jan 2015 09:14:00 -0800 Subject: [PATCH] Change web URL This changes the "visit web site" help menu item from faddensoft.com to a2ciderpress.com. --- app/CiderPress.rc | 2 +- app/Main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/CiderPress.rc b/app/CiderPress.rc index 0520f9f..4e727c1 100644 --- a/app/CiderPress.rc +++ b/app/CiderPress.rc @@ -152,7 +152,7 @@ BEGIN POPUP "&Help" BEGIN MENUITEM "&Contents...\tF1", IDM_HELP_CONTENTS - MENUITEM "Visit faddenSoft &web site", IDM_HELP_WEBSITE + MENUITEM "Visit CiderPress &web site", IDM_HELP_WEBSITE MENUITEM SEPARATOR MENUITEM "&About CiderPress", IDM_HELP_ABOUT END diff --git a/app/Main.cpp b/app/Main.cpp index d49408c..6582345 100644 --- a/app/Main.cpp +++ b/app/Main.cpp @@ -26,7 +26,7 @@ /* use MFC's fancy version of new for debugging */ //#define new DEBUG_NEW -static const WCHAR kWebSiteURL[] = L"http://www.faddensoft.com/"; +static const WCHAR kWebSiteURL[] = L"http://www.a2ciderpress.com/"; /* custom class name for main frame */ static const WCHAR kMainWindowClassName[] = L"faddenSoft.CiderPress.4";