Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Unified Diff: chrome/browser/ui/cocoa/about_window_controller.mm

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: String fix. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/about_window_controller.mm
diff --git a/chrome/browser/ui/cocoa/about_window_controller.mm b/chrome/browser/ui/cocoa/about_window_controller.mm
index 5c9569488b47a87e5023680b4cd3572c477fa12e..261590ef202eaccae128c9863651a3a716dd1b74 100644
--- a/chrome/browser/ui/cocoa/about_window_controller.mm
+++ b/chrome/browser/ui/cocoa/about_window_controller.mm
@@ -654,7 +654,7 @@ static BOOL recentShownUserActionFailedStatus = NO;
l10n_util::GetNSStringWithFixup(IDS_ABOUT_VERSION_COPYRIGHT);
AttributedStringAppendString(legal_block, copyright);
- // These are the markers directly in IDS_ABOUT_VERSION_LICENSE
+ // These are the markers directly in IDS_ABOUT_OLD_VERSION_LICENSE
NSString* kBeginLinkChr = @"BEGIN_LINK_CHR";
NSString* kBeginLinkOss = @"BEGIN_LINK_OSS";
NSString* kEndLinkChr = @"END_LINK_CHR";
@@ -670,7 +670,7 @@ static BOOL recentShownUserActionFailedStatus = NO;
// Now fetch the license string and deal with the markers
NSString* license =
- l10n_util::GetNSStringWithFixup(IDS_ABOUT_VERSION_LICENSE);
+ l10n_util::GetNSStringWithFixup(IDS_ABOUT_OLD_VERSION_LICENSE);
NSRange begin_chr = [license rangeOfString:kBeginLinkChr];
NSRange begin_oss = [license rangeOfString:kBeginLinkOss];

Powered by Google App Engine
This is Rietveld 408576698