diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java b/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java index 408383bd65..4f7ed78859 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java @@ -447,7 +447,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem { super(Children.create(new AccountTypeFactory(), true), Lookups.singleton(Accounts.this)); super.setName(Accounts.NAME); super.setDisplayName(Bundle.Accounts_RootNode_displayName()); - this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/account_menu.png"); //NON-NLS + this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/accounts.png"); //NON-NLS } @Override diff --git a/Core/src/org/sleuthkit/autopsy/images/account_menu.png b/Core/src/org/sleuthkit/autopsy/images/accounts.png similarity index 100% rename from Core/src/org/sleuthkit/autopsy/images/account_menu.png rename to Core/src/org/sleuthkit/autopsy/images/accounts.png diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java b/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java index d04f96ff0b..fd4c5713a3 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java +++ b/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java @@ -255,7 +255,7 @@ class ReportHTML implements TableReportModule { in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/drive_network.png"); //NON-NLS break; case TSK_ACCOUNT: - in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/account_menu.png"); //NON-NLS + in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/accounts.png"); //NON-NLS break; default: logger.log(Level.WARNING, "useDataTypeIcon: unhandled artifact type = " + dataType); //NON-NLS @@ -271,8 +271,8 @@ class ReportHTML implements TableReportModule { * general account icon, but we could do soemthing else in the * future. */ - in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/account_menu.png"); //NON-NLS - iconFileName = "account_menu.png"; //NON-NLS + in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/accounts.png"); //NON-NLS + iconFileName = "accounts.png"; //NON-NLS iconFilePath = path + File.separator + iconFileName; } else { // no defined artifact found for this dataType in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/star.png"); //NON-NLS