This commit is contained in:
peterv%propagandism.org 2005-10-27 14:58:07 +00:00
Родитель ea59650cea
Коммит cdcdbecc57
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -3930,7 +3930,11 @@ nsDocument::CallUserDataHandler(PRUint16 aOperation,
NS_ASSERTION(object == aObject, "Use cannonical nsISupports pointer!");
#endif
nsHandlerData handlerData = { aOperation, aSource, aDest, this };
nsHandlerData handlerData;
handlerData.mOperation = aOperation;
handlerData.mSource = aSource;
handlerData.mDest = aDest;
handlerData.mDocument = this;
mPropertyTable.Enumerate(aObject, DOM_USER_DATA_HANDLER, CallHandler,
&handlerData);