зеркало из https://github.com/mozilla/gecko-dev.git
nsISHEntry's attribute uri became URI to become more consistent with other places it exists.
This commit is contained in:
Родитель
e17ddceb43
Коммит
912fd1e6a3
|
@ -37,7 +37,7 @@ interface nsISHEntry : nsISupports
|
|||
{
|
||||
|
||||
/** URI for the document */
|
||||
attribute nsIURI uri;
|
||||
attribute nsIURI URI;
|
||||
|
||||
/** DOM Document */
|
||||
attribute nsIDOMDocument document;
|
||||
|
|
|
@ -81,7 +81,7 @@ NS_IMETHODIMP
|
|||
nsSHEntry::Create(nsIURI * aURI, const PRUnichar * aTitle, nsIDOMDocument * aDOMDocument,
|
||||
nsIInputStream * aInputStream, nsISupports * aHistoryLayoutState)
|
||||
{
|
||||
SetUri(aURI);
|
||||
SetURI(aURI);
|
||||
SetTitle(aTitle);
|
||||
SetDocument(aDOMDocument);
|
||||
SetPostData(aInputStream);
|
||||
|
@ -124,7 +124,7 @@ nsSHEntry::DestroyChildren() {
|
|||
NS_IMPL_ISUPPORTS2(nsSHEntry, nsISHEntry, nsISHContainer)
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsSHEntry::GetUri(nsIURI **aUri)
|
||||
nsSHEntry::GetURI(nsIURI **aUri)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(aUri);
|
||||
|
||||
|
@ -134,7 +134,7 @@ nsSHEntry::GetUri(nsIURI **aUri)
|
|||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsSHEntry::SetUri(nsIURI * aUri)
|
||||
nsSHEntry::SetURI(nsIURI * aUri)
|
||||
{
|
||||
|
||||
NS_IF_RELEASE(mURI);
|
||||
|
|
|
@ -232,7 +232,7 @@ nsSHistory::PrintHistory()
|
|||
nsXPIDLCString url;
|
||||
|
||||
entry->GetLayoutHistoryState(getter_AddRefs(layoutHistoryState));
|
||||
entry->GetUri(getter_AddRefs(uri));
|
||||
entry->GetURI(getter_AddRefs(uri));
|
||||
entry->GetTitle(&title);
|
||||
|
||||
nsString titlestr(title);
|
||||
|
|
Загрузка…
Ссылка в новой задаче