Made selected bool public

Made bool selected public in order for App.java able to access this information
This commit is contained in:
ProperGeezer 2015-10-18 00:56:50 +01:00
parent 77d6ffc825
commit 9e411823a2

View File

@ -12,7 +12,7 @@ public class HistoryEntry {
public int count = 0; public int count = 0;
public Date startDate = new Date(), public Date startDate = new Date(),
modifiedDate = new Date(); modifiedDate = new Date();
boolean selected = false; public boolean selected = false;
public HistoryEntry() { public HistoryEntry() {
} }