Changeset 146
- Timestamp:
- 05/30/08 16:41:49 (7 months ago)
- Files:
-
- trunk/wxdba/wxdba/wxutils.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wxdba/wxdba/wxutils.cpp
r42 r146 115 115 Tools::SetDateTime(dba::Storeable* pObj,wxDateTime& pDest, const wxDateTime& pSrc) { 116 116 if (pDest.IsValid() && pSrc.IsValid()) { 117 if (pDest != pSrc) 117 if (pDest != pSrc) { 118 118 pDest = pSrc; 119 119 pObj->setChanged(); 120 } 120 121 } else if (!pDest.IsValid() && !pSrc.IsValid()) { 121 122 //no change
