Browse Source

Now compiles on Mac

Thomas Buck 12 years ago
parent
commit
83ead69142
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      CubeControl/Frame.java
  2. 1
    1
      CubeControl/libSerial/makefile

+ 1
- 1
CubeControl/Frame.java View File

@@ -263,7 +263,7 @@ public class Frame extends JFrame implements ListSelectionListener {
263 263
 		// int x = (d.width - getSize().width) / 2;
264 264
 		// int y = (d.height - getSize().height) / 2;
265 265
 		// setLocation(x, y);
266
-		setLocation(10, 10);
266
+		setLocation(50, 50);
267 267
 		Container cp = getContentPane();
268 268
 		cp.setLayout(null);
269 269
 		Font font = new Font("Dialog", Font.PLAIN, 13);

+ 1
- 1
CubeControl/libSerial/makefile View File

@@ -31,7 +31,7 @@ serialInterface.h: HelperUtility.class
31 31
 	javah -o serialInterface.h HelperUtility
32 32
 
33 33
 HelperUtility.class: ../HelperUtility.java
34
-	javac ../HelperUtility.java
34
+	javac -sourcepath ../ ../HelperUtility.java
35 35
 	cp ../HelperUtility.class HelperUtility.class
36 36
 
37 37
 # SystemRoot is only defined in Windows

Loading…
Cancel
Save