SVN commit 429330 by mlaurent: Compile M +4 -1 dom_docimpl.cpp M +4 -2 dom_docimpl.h --- branches/work/kde4/kdelibs/khtml/xml/dom_docimpl.cpp #429329:429330 @@ -43,6 +43,9 @@ #include #include +//Added by qt3to4: +#include +#include #include #include #include @@ -2427,7 +2430,7 @@ m_imageLoadEventDispatchingList = m_imageLoadEventDispatchSoonList; m_imageLoadEventDispatchSoonList.clear(); - for (QPtrListIterator it(m_imageLoadEventDispatchingList); it.current(); ) { + for (Q3PtrListIterator it(m_imageLoadEventDispatchingList); it.current(); ) { khtml::RenderImage* image = it.current(); // Must advance iterator *before* dispatching call. // Otherwise, it might be advanced automatically if dispatching the call had a side effect --- branches/work/kde4/kdelibs/khtml/xml/dom_docimpl.h #429329:429330 @@ -38,6 +38,8 @@ #include #include #include +//Added by qt3to4: +#include #include @@ -555,8 +557,8 @@ int m_decoderMibEnum; - QPtrList m_imageLoadEventDispatchSoonList; - QPtrList m_imageLoadEventDispatchingList; + Q3PtrList m_imageLoadEventDispatchSoonList; + Q3PtrList m_imageLoadEventDispatchingList; int m_imageLoadEventTimer; khtml::RenderArena* m_renderArena;