From 997a1615debf524c64c93c48e7af557f28a96a29 Mon Sep 17 00:00:00 2001 From: millmanorama Date: Mon, 17 Oct 2016 17:02:19 +0200 Subject: [PATCH] fix account icon in reports --- .../org/sleuthkit/autopsy/report/ReportHTML.java | 2 +- .../images/{account_menu.png => accounts.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename Core/src/org/sleuthkit/autopsy/report/images/{account_menu.png => accounts.png} (100%) diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java b/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java index 008b9082be..f3057a946d 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java +++ b/Core/src/org/sleuthkit/autopsy/report/ReportHTML.java @@ -271,7 +271,7 @@ class ReportHTML implements TableReportModule { * them all the general account icon, but we could do something else * in the future. */ - in = getClass().getResourceAsStream("/org/sleuthkit/autopsy/report/images/star.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 diff --git a/Core/src/org/sleuthkit/autopsy/report/images/account_menu.png b/Core/src/org/sleuthkit/autopsy/report/images/accounts.png similarity index 100% rename from Core/src/org/sleuthkit/autopsy/report/images/account_menu.png rename to Core/src/org/sleuthkit/autopsy/report/images/accounts.png