diff options
| author | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:46:47 -0600 |
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2017-09-18 20:46:47 -0600 |
| commit | 3ead5d54135003702f771191d2c53abb584d1695 (patch) | |
| tree | 03f812123642d41215fbc67ff6a308fb2906d77a /telegps | |
| parent | b94d18396f050b61a5671b4239d2a3eb9b7a835c (diff) | |
| parent | 216ea6388a75c46891dc4687a2eb0c97dc63b136 (diff) | |
Merge branch 'branch-1.8' into debian
Diffstat (limited to 'telegps')
| -rw-r--r-- | telegps/Makefile.am | 2 | ||||
| -rw-r--r-- | telegps/TeleGPSConfigUI.java | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/telegps/Makefile.am b/telegps/Makefile.am index a1c4a0a1..9dd2ceac 100644 --- a/telegps/Makefile.am +++ b/telegps/Makefile.am @@ -128,7 +128,7 @@ clean-local: altoslib_*.jar altosuilib_*.jar \ $(JFREECHART_CLASS) $(JCOMMON_CLASS) $(FREETTS_CLASS) $(LIBALTOS) Manifest.txt Manifest-fat.txt \ telegps telegps-test telegps-jdb macosx linux windows telegps-windows.log \ - telegps-windows.nsi *.desktop $(MDWN) + telegps-windows.nsi *.desktop *.mdwn EXTRA_DIST = $(desktop_file).in diff --git a/telegps/TeleGPSConfigUI.java b/telegps/TeleGPSConfigUI.java index 88ced192..87683c2b 100644 --- a/telegps/TeleGPSConfigUI.java +++ b/telegps/TeleGPSConfigUI.java @@ -619,7 +619,7 @@ public class TeleGPSConfigUI return true; } - void set_dirty() { + public void set_dirty() { dirty = true; save.setEnabled(true); } @@ -634,6 +634,17 @@ public class TeleGPSConfigUI super.dispose(); } + public int accel_cal_plus() { + return AltosLib.MISSING; + } + + public int accel_cal_minus() { + return AltosLib.MISSING; + } + + public void set_accel_cal(int accel_plus, int accel_minus) { + } + /* Listen for events from our buttons */ public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); |
