fixed Unix bustage. compare nsCOMPtr xxx.get() rather than just xxx

This commit is contained in:
buster%netscape.com 1999-06-25 00:28:28 +00:00
Родитель 4babc88732
Коммит 4d7c316355
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -106,7 +106,7 @@ static NS_DEFINE_CID(kPrefServiceCID, NS_PREF_CID);
#ifdef NS_DEBUG
static PRBool gNoisy = PR_FALSE;
static PRBool gNoisy = PR_TRUE;
#else
static const PRBool gNoisy = PR_FALSE;
#endif
@ -2025,7 +2025,7 @@ NS_IMETHODIMP nsTextEditor::MoveContiguousContentIntoNewParent(nsIDOMNode *aSta
if (NS_SUCCEEDED(result))
{ // move all the intermediate nodes into the new parent node
nsCOMPtr<nsIDOMNode>nextSibling;
while (intermediateNode.get() != endNode)
while (intermediateNode.get() != endNode.get())
{
if (!intermediateNode)
result = NS_ERROR_NULL_POINTER;