Skip to content

Commit

Permalink
Fix build error with newer Java
Browse files Browse the repository at this point in the history
  • Loading branch information
DaoWen committed Aug 28, 2016
1 parent 5352a8d commit 4fc0d76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>
</project>
4 changes: 2 additions & 2 deletions src/pinming/gui/AboutFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public AboutFrame(JFrame owner) {
Container cp = getContentPane();
cp.setLayout(new BorderLayout());
JPanel topPanel = new JPanel(new BorderLayout());
JLabel label1 = new JLabel("<html><br>&nbsp;&nbsp;Pin-Ming v1.0.3<br>&nbsp;&nbsp;Copyright © 2007-2009 Nick Vrvilo</html>");
JLabel label1 = new JLabel("<html><br>&nbsp;&nbsp;Pin-Ming v1.0.3<br>&nbsp;&nbsp;Copyright &copy; 2007-2009 Nick Vrvilo</html>");
JLabel label2 = new JLabel("<html><font color=\"blue\">&nbsp;&nbsp;<u>http://ouuuuch.phoenixteam.org/</u></font></html>");
label2.addMouseListener(this);
label2.setCursor(new Cursor(Cursor.HAND_CURSOR));
Expand Down Expand Up @@ -73,4 +73,4 @@ public void mouseEntered(MouseEvent e) {}
/** Unused */
public void mouseExited(MouseEvent e) {}

}
}

0 comments on commit 4fc0d76

Please sign in to comment.