diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-28 15:50:30 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-28 15:50:30 -0700 |
commit | 31e3255b6cbfaf95c0e97e2d1ec8de72f845994c (patch) | |
tree | 7213069af129b6b29bc59d48ce5c1e3f336537c9 /altosui/AltosDevice.java | |
parent | cf72c2f5a69a736c28a9b63e124d510ef41a9f5d (diff) |
altosui: Report error message back from libaltos
This includes changing all of the error dialogs to show the error
message rather than just the file name.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDevice.java')
-rw-r--r-- | altosui/AltosDevice.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altosui/AltosDevice.java b/altosui/AltosDevice.java index 3357c550..1b5c1a91 100644 --- a/altosui/AltosDevice.java +++ b/altosui/AltosDevice.java @@ -26,5 +26,6 @@ public interface AltosDevice { public abstract int getSerial(); public abstract String getPath(); public abstract boolean matchProduct(int product); + public abstract String getErrorString(); public SWIGTYPE_p_altos_file open(); } |