[commit] r1899 - trunk/GME/ObjectInspector

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Apr 17 16:37:14 CDT 2012


Author: ksmyth
Date: Tue Apr 17 16:37:14 2012
New Revision: 1899

Log:
Fix ASSERT error

Modified:
   trunk/GME/ObjectInspector/InspectorList.cpp

Modified: trunk/GME/ObjectInspector/InspectorList.cpp
==============================================================================
--- trunk/GME/ObjectInspector/InspectorList.cpp	Tue Apr 17 16:37:04 2012	(r1898)
+++ trunk/GME/ObjectInspector/InspectorList.cpp	Tue Apr 17 16:37:14 2012	(r1899)
@@ -730,7 +730,8 @@
 	{
 		CInspectorList::AddItem(ListItemArray.ElementAt(k));
 	}
-	m_InPlaceManager.m_ArrowButton.ShowWindow(SW_HIDE);
+	if (m_InPlaceManager.m_ArrowButton.m_hWnd)
+		m_InPlaceManager.m_ArrowButton.ShowWindow(SW_HIDE);
 
 	Invalidate();
 }


More information about the gme-commit mailing list