Skip to content

Commit

Permalink
Cater for those crazy folks who have more than 2 com ports on their w…
Browse files Browse the repository at this point in the history
…indows boxes

git-svn-id: http://svn.osgeo.org/qgis/trunk@8809 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jul 17, 2008
1 parent a389923 commit 5793266
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/plugins/gps_importer/qgsgpsplugingui.cpp
Expand Up @@ -354,9 +354,13 @@ void QgsGPSPluginGui::populatePortComboBoxes() {
#ifdef WIN32
cmbULPort->addItem("com1");
cmbULPort->addItem("com2");
cmbULPort->addItem("com3");
cmbULPort->addItem("com4");
cmbULPort->addItem("usb:");
cmbDLPort->addItem("com1");
cmbDLPort->addItem("com2");
cmbDLPort->addItem("com3");
cmbDLPort->addItem("com4");
cmbDLPort->addItem("usb:");
#endif

Expand Down

0 comments on commit 5793266

Please sign in to comment.