Fixed a slight bug with handling error codes

This commit is contained in:
kipp%netscape.com 1999-04-13 21:50:47 +00:00
Родитель 9891bf16bc
Коммит 6752c99b34
2 изменённых файлов: 4 добавлений и 12 удалений

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

@ -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,