| Index: chrome/installer/util/shell_util.cc
|
| diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
|
| index 82d0fb5b79e58377f7a6d987b233fe0f0c842953..18fcf02b151e6fcd9ad8c3fdc151995b11f99c8f 100644
|
| --- a/chrome/installer/util/shell_util.cc
|
| +++ b/chrome/installer/util/shell_util.cc
|
| @@ -168,8 +168,8 @@ class RegistryEntry {
|
| // start->Internet shortcut.
|
| std::wstring start_menu(ShellUtil::kRegStartMenuInternet);
|
| BrowserDistribution* dist = BrowserDistribution::GetDistribution();
|
| - entries->push_front(new RegistryEntry(start_menu,
|
| - dist->GetApplicationName()));
|
| + std::wstring app_name = dist->GetApplicationName() + suffix;
|
| + entries->push_front(new RegistryEntry(start_menu, app_name));
|
| return true;
|
| }
|
|
|
|
|