mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 10:43:24 +00:00
Fixed a slight bug with handling error codes
This commit is contained in:
parent
bdc62f7dd6
commit
24ff6b20c1
@ -1406,7 +1406,6 @@ NS_IMETHODIMP
|
||||
PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
nsIFrame* aFrame)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
nsIEventQueueService* eventService;
|
||||
nsresult rv;
|
||||
|
||||
@ -1421,7 +1420,7 @@ PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
&eventQueue);
|
||||
nsServiceManager::ReleaseService(kEventQueueServiceCID, eventService);
|
||||
|
||||
if (nsnull != eventQueue) {
|
||||
if (NS_SUCCEEDED(rv) && (nsnull != eventQueue)) {
|
||||
CantRenderReplacedElementEvent* ev;
|
||||
|
||||
ev = new CantRenderReplacedElementEvent(this, aFrame);
|
||||
@ -1429,9 +1428,6 @@ PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
#else
|
||||
return NS_OK;
|
||||
#endif
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
@ -1439,7 +1435,7 @@ PresShell::GoToAnchor(const nsString& aAnchorName) const
|
||||
{
|
||||
nsCOMPtr<nsIDOMHTMLDocument> htmlDoc;
|
||||
nsCOMPtr<nsIXMLDocument> xmlDoc;
|
||||
nsresult rv;
|
||||
nsresult rv = NS_OK;
|
||||
nsCOMPtr<nsIContent> content;
|
||||
|
||||
if (NS_SUCCEEDED(mDocument->QueryInterface(kIDOMHTMLDocumentIID,
|
||||
|
@ -1406,7 +1406,6 @@ NS_IMETHODIMP
|
||||
PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
nsIFrame* aFrame)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
nsIEventQueueService* eventService;
|
||||
nsresult rv;
|
||||
|
||||
@ -1421,7 +1420,7 @@ PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
&eventQueue);
|
||||
nsServiceManager::ReleaseService(kEventQueueServiceCID, eventService);
|
||||
|
||||
if (nsnull != eventQueue) {
|
||||
if (NS_SUCCEEDED(rv) && (nsnull != eventQueue)) {
|
||||
CantRenderReplacedElementEvent* ev;
|
||||
|
||||
ev = new CantRenderReplacedElementEvent(this, aFrame);
|
||||
@ -1429,9 +1428,6 @@ PresShell::CantRenderReplacedElement(nsIPresContext* aPresContext,
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
#else
|
||||
return NS_OK;
|
||||
#endif
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
@ -1439,7 +1435,7 @@ PresShell::GoToAnchor(const nsString& aAnchorName) const
|
||||
{
|
||||
nsCOMPtr<nsIDOMHTMLDocument> htmlDoc;
|
||||
nsCOMPtr<nsIXMLDocument> xmlDoc;
|
||||
nsresult rv;
|
||||
nsresult rv = NS_OK;
|
||||
nsCOMPtr<nsIContent> content;
|
||||
|
||||
if (NS_SUCCEEDED(mDocument->QueryInterface(kIDOMHTMLDocumentIID,
|
||||
|
Loading…
Reference in New Issue
Block a user