[Datatype-cvs] smil/renderer/smil1 sm1doc.cpp,1.6.6.4,1.6.6.5
rggammon at helixcommunity.org rggammon at helixcommunity.orgUpdate of /cvsroot/datatype/smil/renderer/smil1
In directory cvs-new:/tmp/cvs-serv11155/smil1
Modified Files:
Tag: hxclient_1_5_0_cayenne
sm1doc.cpp
Log Message:
restore member variable initializations
Index: sm1doc.cpp
===================================================================
RCS file: /cvsroot/datatype/smil/renderer/smil1/sm1doc.cpp,v
retrieving revision 1.6.6.4
retrieving revision 1.6.6.5
diff -u -d -r1.6.6.4 -r1.6.6.5
--- sm1doc.cpp 27 Apr 2005 14:36:01 -0000 1.6.6.4
+++ sm1doc.cpp 24 May 2005 17:52:55 -0000 1.6.6.5
@@ -369,6 +369,7 @@
CSmil1DocumentRenderer::CSmil1DocumentRenderer(
CSmil1Renderer* pParent, IUnknown* pContext):
m_bSiteChangingSize(FALSE),
+ m_bNeedToAdjustSites(FALSE),
m_ulNoRootLayoutHeight(0),
m_ulNoRootLayoutWidth(0),
m_pParent(pParent),
@@ -381,6 +382,7 @@
m_pRegionMap(0),
m_pSiteInfoByRendererMap(0),
m_pSiteWatcherMap(0),
+ m_pGroupInfoMap(0),
m_pDeferredSourceMap(0),
m_pRepeatIDMap(0),
m_pSiteInfoList(0),
@@ -412,23 +414,25 @@
m_hHyperlinkCursor(0),
m_bNeedToSetHyperlinkCursor(FALSE),
#endif
- m_bRootLayoutWidthSet(FALSE),
- m_bRootLayoutHeightSet(FALSE),
- m_ulRootLayoutHeight(0),
- m_ulRootLayoutWidth(0),
- m_ulRootLayoutBGColor(0),
-#ifdef _MACINTOSH
+#if defined(_MACINTOSH)
m_hHyperlinkCursor(0),
m_bResetCursor(FALSE),
+ m_pResourceLoader(0),
#endif
#if defined(_UNIX) && (!defined(_BEOS)) && defined(USE_XWINDOWS)
+ m_pVisualInfo(NULL),
m_hHyperlinkCursor(0),
m_hCurrentCursor(0),
m_pDisplay(0),
m_Window(0),
m_pPixmapDisplay(NULL),
- m_pVisualInfo(NULL),
#endif
+ m_bRootLayoutWidthSet(FALSE),
+ m_bRootLayoutHeightSet(FALSE),
+ m_ulRootLayoutHeight(0),
+ m_ulRootLayoutWidth(0),
+ m_ulRootLayoutBGColor(0),
+ m_ulGroupIndex(0),
m_ulTrackIndex(0),
m_uGroupIndexWithin(0),
m_bSitesDetached(FALSE),