Changeset 146

Show
Ignore:
Timestamp:
05/30/08 16:41:49 (7 months ago)
Author:
zork
Message:

fixed #26

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wxdba/wxdba/wxutils.cpp

    r42 r146  
    115115Tools::SetDateTime(dba::Storeable* pObj,wxDateTime& pDest, const wxDateTime& pSrc) { 
    116116  if (pDest.IsValid() && pSrc.IsValid()) { 
    117     if (pDest != pSrc) 
     117    if (pDest != pSrc) { 
    118118      pDest = pSrc; 
    119119      pObj->setChanged(); 
     120    } 
    120121  } else if (!pDest.IsValid() && !pSrc.IsValid()) { 
    121122    //no change