diff options
author | Keith Packard <keithp@keithp.com> | 2010-09-04 17:27:17 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-09-04 17:27:17 -0700 |
commit | 887b11f6b9c81b9f15348d54017e700ca7dc5e55 (patch) | |
tree | e48a60cec7dcf2c3435e4f7e061002bbfdb08e4f /ao-tools/altosui/AltosUI.java | |
parent | e844e8a0695e27af6f8e3e37a5e3bcc865b862e3 (diff) |
Use autotools for altosui and libaltos
This switches from hand-written Makefiles to automake with libtool
for these parts of the system.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/altosui/AltosUI.java')
-rw-r--r-- | ao-tools/altosui/AltosUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/AltosUI.java b/ao-tools/altosui/AltosUI.java index eb376be4..37625e8e 100644 --- a/ao-tools/altosui/AltosUI.java +++ b/ao-tools/altosui/AltosUI.java @@ -75,7 +75,7 @@ public class AltosUI extends JFrame { String[] statusNames = { "Height (m)", "State", "RSSI (dBm)", "Speed (m/s)" }; Object[][] statusData = { { "0", "pad", "-50", "0" } }; - java.net.URL imgURL = AltosUI.class.getResource("/images/altus-metrum-16x16.jpg"); + java.net.URL imgURL = AltosUI.class.getResource("/altus-metrum-16x16.jpg"); if (imgURL != null) setIconImage(new ImageIcon(imgURL).getImage()); |