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

Unified Diff: chrome/browser/ui/gtk/about_chrome_dialog.cc

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/gtk/about_chrome_dialog.cc
diff --git a/chrome/browser/ui/gtk/about_chrome_dialog.cc b/chrome/browser/ui/gtk/about_chrome_dialog.cc
index e5a59591588a1a6d3d62320519f08d90db97963f..93912173e85bb0e57849a46856b4c7ec9422261d 100644
--- a/chrome/browser/ui/gtk/about_chrome_dialog.cc
+++ b/chrome/browser/ui/gtk/about_chrome_dialog.cc
@@ -175,7 +175,7 @@ void ShowAboutDialogForProfile(GtkWindow* parent, Profile* profile) {
gtk_misc_set_alignment(GTK_MISC(copyright_label), 0.0, 0.5);
gtk_box_pack_start(GTK_BOX(vbox), copyright_label, FALSE, FALSE, 5);
- std::string license = l10n_util::GetStringUTF8(IDS_ABOUT_VERSION_LICENSE);
+ std::string license = l10n_util::GetStringUTF8(IDS_ABOUT_OLD_VERSION_LICENSE);
bool chromium_url_appears_first =
license.find(kBeginLinkChr) < license.find(kBeginLinkOss);
size_t link1 = license.find(kBeginLink);

Powered by Google App Engine
This is Rietveld 408576698