Align with revised nsIPropertyElement interface: move getters/setters to

directly access the key and value attributes.
b=113870; r=morse; sr=alecf
This commit is contained in:
sgehani%netscape.com 2006-05-17 02:31:40 +00:00
Родитель ff1781c010
Коммит 35f9a963e2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -146,13 +146,13 @@ function ReadAvailableLanguages()
curItem = curItem.QueryInterface(Components.interfaces.nsIPropertyElement);
//dump string name (key)
stringName = curItem.getKey();
stringName = curItem.key;
stringNameProperty = stringName.split('.');
if (stringNameProperty[1] == 'accept') {
//dump the UI string (value)
visible = curItem.getValue();
visible = curItem.value;
//if (visible == 'true') {