[Wgui-cvs] wgui/includes wg_resource_handle.h, 1.19, 1.20 wutil_log.h, 1.5, 1.6
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2006-10-31 19:02:01
|
Update of /cvsroot/wgui/wgui/includes In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16897/includes Modified Files: wg_resource_handle.h wutil_log.h Log Message: Index: wutil_log.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wutil_log.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** wutil_log.h 3 Jun 2004 18:40:52 -0000 1.5 --- wutil_log.h 31 Oct 2006 19:01:57 -0000 1.6 *************** *** 44,47 **** --- 44,48 ---- { //! The constructor + SLogEntry(void) : m_TimeStamp(0), m_iSeverity(0) {} SLogEntry(time_t TimeStamp, unsigned int iSeverity, const std::string& sMessage) : m_TimeStamp(TimeStamp), m_iSeverity(iSeverity), m_sMessage(sMessage) { } Index: wg_resource_handle.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_resource_handle.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** wg_resource_handle.h 3 Jun 2004 19:14:57 -0000 1.19 --- wg_resource_handle.h 31 Oct 2006 19:01:57 -0000 1.20 *************** *** 50,53 **** --- 50,56 ---- CResourceHandle(TResourceId resId); + //! CResourceHandle default constructor creates only a null resource + CResourceHandle(void) : m_ResourceId(NULL_RESOURCE_ID) {} + //! A copying constructor //! \param resHandle An existing resource handle that will be cloned |