[iclect-commits] iclect/src/iclect.Forms Film.cs,1.6,1.7
Status: Beta
Brought to you by:
mhjp
|
From: Michael P. <mh...@us...> - 2003-07-26 07:29:33
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv3612/iclect.Forms
Modified Files:
Film.cs
Log Message:
Removed FileInfo from ImageFile.
Index: Film.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/Film.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Film.cs 3 Jul 2003 14:32:51 -0000 1.6
--- Film.cs 25 Jul 2003 15:35:10 -0000 1.7
***************
*** 267,271 ****
if (imageFile.RecordingTime == DateTime.MinValue)
{
! time = imageFile.FileInfo.CreationTime;
creation = "Created";
}
--- 267,271 ----
if (imageFile.RecordingTime == DateTime.MinValue)
{
! time = imageFile.CreationTime;
creation = "Created";
}
***************
*** 276,280 ****
}
string text = string.Format("Image: {0}\r\n{1}: {2}\r\nSize: {3} x {4}",
! imageFile.FileInfo.Name,
creation, time,
imageFile.Width,
--- 276,280 ----
}
string text = string.Format("Image: {0}\r\n{1}: {2}\r\nSize: {3} x {4}",
! imageFile.Name,
creation, time,
imageFile.Width,
|