fixes 58679 Passing Unicode instead.

This commit is contained in:
yokoyama%netscape.com 2001-01-16 22:24:44 +00:00
Родитель cbf5389bd8
Коммит 8ec262a32e
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -170,7 +170,7 @@ function processCreateProfileData( aProfName, aProfDir, langcode)
fileSpec = fileSpec.QueryInterface( Components.interfaces.nsILocalFile );
if (aProfDir == null)
fileSpec.initWithUnicodePath(profile.defaultProfileParentDir.path);
fileSpec.initWithUnicodePath(profile.defaultProfileParentDir.unicodePath);
else
fileSpec.initWithUnicodePath(aProfDir);

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

@ -91,7 +91,7 @@ function chooseProfileFolder( aRootFolder )
var folderText = document.getElementById("ProfileDir");
dump("*** setting rootFolderAttribute to " + aRootFolder + "\n");
folderText.setAttribute( "rootFolder", aRootFolder );
if ( aRootFolder != top.profile.defaultProfileParentDir.path )
if ( aRootFolder != top.profile.defaultProfileParentDir.unicodePath )
document.getElementById( "useDefault" ).removeAttribute("disabled");
updateProfileName();
}
@ -144,7 +144,7 @@ function setDisplayToDefaultFolder()
if ( fileSpec )
fileSpec = fileSpec.QueryInterface( Components.interfaces.nsIFile );
if ( fileSpec )
profileDisplay.setAttribute("rootFolder", fileSpec.path );
profileDisplay.setAttribute("rootFolder", fileSpec.unicodePath );
}