Originally posted by: Jonathan Liu
You must set m_pDlg to NUll in the constructor of COGView before calling OnEditProp()
ReplyOriginally posted by: Marcello
Delete the m_pDlg in the destructor to correct the leak!
Reply
Originally posted by: jose fermin sandoval palacios
Esta es una de las mejores aplicaiones de OpenGl, que he visto y que alguien ha aportado. Muy interesante el uso del lenguaje Visual C++.
ReplyOriginally posted by: Armen
Thanks for fine application!
ReplyOriginally posted by: Eric Li
m_pDlg was not initialized. A line could be added in the constructor of COGView such as
COGView::COGView()
A piece of wonderful work. Thanks!
:m_pDlg(NULL)
{
...
}
Reply