checkin for bstell@netscape.com:

bug 54000; r=ftang@netscape.com, sr=erik@netscape.com
(part of nl_langinfo(CODESET);)
add DidLoad() method to indicate the file was loaded
This commit is contained in:
erik%netscape.com 2001-04-03 06:00:01 +00:00
Родитель 9cda032ba6
Коммит 9455c1c855
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -93,3 +93,9 @@ NS_IMETHODIMP nsURLProperties::Get(const nsString& aKey, nsString& oValue)
else
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsURLProperties::DidLoad(PRBool &oDidLoad)
{
oDidLoad = (mDelegate!=nsnull);
return NS_OK;
}