162858 - Fix a typo which caused the e-mail icon not to be used on the WinXP start menu

Patch by Malcolm Rowe <bugzilla2@farside.demon.co.uk>
r=dveditz@netscape.com sr=roc+moz@cs.cmu.edu
This commit is contained in:
caillon%returnzero.com 2002-10-02 08:55:36 +00:00
Родитель 1405fe4c71
Коммит 59cb3c260c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -229,7 +229,7 @@ function createShortcuts()
winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE);
winreg.createKey(subkey,"");
winreg.createKey(subkey + "\\DefaultsIcon", "");
winreg.createKey(subkey + "\\DefaultIcon", "");
winreg.createKey(subkey + "\\shell", "");
winreg.createKey(subkey + "\\shell\\open", "");
winreg.createKey(subkey + "\\shell\\open\\command", "");
@ -242,7 +242,7 @@ function createShortcuts()
valname = "";
// path does not need to be quoted per MS doc
data = fProgram + "chrome\\icons\\default\\messengerWindow.ico,0";
winreg.setValueString(subkey + "\\DefaultsIcon", valname, data);
winreg.setValueString(subkey + "\\DefaultIcon", valname, data);
valname = "";
data = "\"" + fProgram + "$MainExeFile$\" -mail";