Lines Matching refs:aDateTime
70 util::DateTime aDateTime; in LoadOlePropertySet() local
90 if( xGlobSect->GetFileTimeValue( aDateTime, PROPID_CREATED ) ) in LoadOlePropertySet()
91 i_xDocProps->setCreationDate( aDateTime ); in LoadOlePropertySet()
99 if( xGlobSect->GetFileTimeValue( aDateTime, PROPID_LASTSAVED ) ) in LoadOlePropertySet()
100 i_xDocProps->setModificationDate( aDateTime ); in LoadOlePropertySet()
105 if( xGlobSect->GetFileTimeValue( aDateTime, PROPID_LASTPRINTED ) ) in LoadOlePropertySet()
106 i_xDocProps->setPrintDate( aDateTime ); in LoadOlePropertySet()
117 if( xGlobSect->GetFileTimeValue( aDateTime, PROPID_EDITTIME ) ) in LoadOlePropertySet()
120 aDateTime.Year -= 1601; in LoadOlePropertySet()
121 aDateTime.Month -= 1; in LoadOlePropertySet()
122 aDateTime.Day -= 1; in LoadOlePropertySet()
126 aDateTime.Day * 60*60*24 + in LoadOlePropertySet()
127 aDateTime.Hours * 60*60 + in LoadOlePropertySet()
128 aDateTime.Minutes * 60 + in LoadOlePropertySet()
129 aDateTime.Seconds ); in LoadOlePropertySet()