Archived
1
0

+ a "!" in Log-Details-View now indicates whether a file is still existing or not

+ committed additional files
This commit is contained in:
mbirth
2005-01-19 00:18:39 +00:00
parent 99e0d89ce3
commit 476a526fcc
4 changed files with 8 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ public class JUninstaller extends Frame implements ActionListener {
} else if (ae.getSource().equals(btDetails)) { // Details of log-entry
String selItem = ltView.getSelectedItem();
if (selItem != null) {
String mbt = selItem.substring(2);
String mbt = selItem.substring(selItem.indexOf(" ")+1);
File flDet = new File(mbt);
if (flDet.exists()) {
mbt += "\n\nSize: "+flDet.length()+" Bytes";