summaryrefslogtreecommitdiffstats
path: root/gtk-gui.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2011-12-13 20:34:56 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2011-12-13 20:34:56 -0800
commit4b77a5def6df965cae63dec8b836e18e1e09cd58 (patch)
treeb360828cae21dce1c3cb3640de609dd02d4aa941 /gtk-gui.c
parent001f6d05dca762de232c68b7ff10fdc999a61514 (diff)
downloadsubsurface-4b77a5def6df965cae63dec8b836e18e1e09cd58.tar.gz
Add reasonable default device names for divecomputer import
So far we hard coded /dev/ttyUSB0 - which is a good starting point in Linux but not so useful on Windows or MacOS. This was now moved into one of our OS helper functions with (somewhat) reasonable defaults. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r--gtk-gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk-gui.c b/gtk-gui.c
index eae080808..c6b79b690 100644
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -913,7 +913,7 @@ static GtkEntry *dive_computer_device(GtkWidget *vbox)
entry = gtk_entry_new();
gtk_container_add(GTK_CONTAINER(frame), entry);
- gtk_entry_set_text(GTK_ENTRY(entry), "/dev/ttyUSB0");
+ gtk_entry_set_text(GTK_ENTRY(entry), subsurface_USB_name());
return GTK_ENTRY(entry);
}