[Libufo-commits] ufo-0.5/include/ufo/ux uxsdldriver.hpp,1.7,1.8 uxwgldriver.hpp,1.6,1.7
Status: Beta
Brought to you by:
schmidtjf
|
From: Johannes S. <sch...@us...> - 2005-10-17 16:40:11
|
Update of /cvsroot/libufo/ufo-0.5/include/ufo/ux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23479/include/ufo/ux Modified Files: uxsdldriver.hpp uxwgldriver.hpp Log Message: Added virtual keyword for destructor. Index: uxsdldriver.hpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/include/ufo/ux/uxsdldriver.hpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** uxsdldriver.hpp 21 May 2005 15:17:23 -0000 1.7 --- uxsdldriver.hpp 17 Oct 2005 16:39:54 -0000 1.8 *************** *** 53,57 **** public: UXSDLDriver(const char * sdlPath = ""); ! ~UXSDLDriver(); public: // Implements UVideoDriver --- 53,57 ---- public: UXSDLDriver(const char * sdlPath = ""); ! virtual ~UXSDLDriver(); public: // Implements UVideoDriver Index: uxwgldriver.hpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/include/ufo/ux/uxwgldriver.hpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** uxwgldriver.hpp 21 May 2005 15:17:23 -0000 1.6 --- uxwgldriver.hpp 17 Oct 2005 16:39:54 -0000 1.7 *************** *** 57,61 **** public: UXWGLDriver(); ! ~UXWGLDriver(); public: // Implements UVideoDriver --- 57,61 ---- public: UXWGLDriver(); ! virtual ~UXWGLDriver(); public: // Implements UVideoDriver |