OSDN Git Service

update master
authoryuuhayashi <hayashi.yuu@gmail.com>
Mon, 1 Mar 2021 22:49:54 +0000 (07:49 +0900)
committeryuuhayashi <hayashi.yuu@gmail.com>
Mon, 1 Mar 2021 22:49:54 +0000 (07:49 +0900)
.gitignore
gpx2osm/src/osm/jp/osmtracker/tool/gui/Gps2osm.java

index b925008..c07fc65 100644 (file)
@@ -1,3 +1,4 @@
 *.zip
 *.class
-gpx2osm/gpx2osm.jar
\ No newline at end of file
+gpx2osm/gpx2osm.jar
+/bin
index 93f3174..03e5534 100644 (file)
@@ -72,8 +72,8 @@ public class Gps2osm extends JFrame
         // パラメータ設定パネル
         argsPanel = new JPanel();
         argsPanel.setLayout(new BoxLayout(argsPanel, BoxLayout.Y_AXIS));
-        arg1Panel = new ParameterPanel("基準フォルダ: ", "C:\\TEMP");
-        argsPanel.add(arg1Panel);
+        ParameterPanel arg1Panel1 = new ParameterPanel("基準フォルダ: ", "TEMP");
+        argsPanel.add(arg1Panel1);
         
         this.getContentPane().add("North", argsPanel);