[iclect-commits] iclect/src/iclect.ImageManager ImageFile.cs,1.4,1.5
Status: Beta
Brought to you by:
mhjp
|
From: Michael P. <mh...@us...> - 2003-07-03 14:32:55
|
Update of /cvsroot/iclect/iclect/src/iclect.ImageManager
In directory sc8-pr-cvs1:/tmp/cvs-serv15539/src/iclect.ImageManager
Modified Files:
ImageFile.cs
Log Message:
Distinguish between the time an image was taken, if available, and the time the file was created.
Index: ImageFile.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFile.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ImageFile.cs 27 Jun 2003 02:31:42 -0000 1.4
--- ImageFile.cs 3 Jul 2003 14:32:51 -0000 1.5
***************
*** 162,173 ****
get { return _height; }
}
! public DateTime CreationTime
{
! get
! {
! if (_recordingTime == DateTime.MinValue)
! return _fileInfo.CreationTime;
! return _recordingTime;
! }
}
--- 162,168 ----
get { return _height; }
}
! public DateTime RecordingTime
{
! get { return _recordingTime; }
}
|