Clear modified field on media device unmount (and other cases where the modified date is no longer valid)

This resolves the remainder of Bug 1666
pull/2/head
Timothy Pearson 10 years ago
parent 2d6096ff94
commit 8b103159ba

@ -135,7 +135,11 @@ void KonqListViewItem::updateContents()
if ( _time != 0 )
{
dt.setTime_t( _time );
setText(tmpColumn->displayInColumn,TDEGlobal::locale()->formatDateTime(dt));
setText(tmpColumn->displayInColumn, TDEGlobal::locale()->formatDateTime(dt));
}
else
{
setText(tmpColumn->displayInColumn, TQString::null);
}
}
break;

Loading…
Cancel
Save