diff options
author | Bdale Garbee <bdale@gag.com> | 2016-01-10 19:09:09 -0700 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2016-01-10 19:09:09 -0700 |
commit | 4ecc53175a5c28cbc1b846c24d83b6adc3afc2ef (patch) | |
tree | 4c318f3d5b7ef01247531a8ccb8ce3ce211e48b3 /telegps/TeleGPSDisplayThread.java | |
parent | 19d25c9f4c80d2c8562fc4abd766a23961167e79 (diff) | |
parent | a2ea621eac3263348aff50885c79296f8ece26ed (diff) |
Merge branch 'branch-1.6' into debian
Diffstat (limited to 'telegps/TeleGPSDisplayThread.java')
-rw-r--r-- | telegps/TeleGPSDisplayThread.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/telegps/TeleGPSDisplayThread.java b/telegps/TeleGPSDisplayThread.java index fa394b17..4d8fdcc9 100644 --- a/telegps/TeleGPSDisplayThread.java +++ b/telegps/TeleGPSDisplayThread.java @@ -21,8 +21,8 @@ import java.awt.*; import javax.swing.*; import java.io.*; import java.text.*; -import org.altusmetrum.altoslib_8.*; -import org.altusmetrum.altosuilib_8.*; +import org.altusmetrum.altoslib_9.*; +import org.altusmetrum.altosuilib_9.*; public class TeleGPSDisplayThread extends Thread { @@ -129,7 +129,7 @@ public class TeleGPSDisplayThread extends Thread { } public synchronized void notice(boolean spoken) { - if (old_state != null && old_state.state != state.state) { + if (old_state != null && old_state.state() != state.state()) { report_time = now(); this.notify(); } else if (spoken) |