Skip to content

Commit 6346017

Browse files
committed
Move that v for version to the right spot.
1 parent 89e4ef8 commit 6346017

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/com/ggtracker/uploader/Consts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class Consts {
2323
/** Application name. */
2424
public static final String APP_NAME = "ggtracker uploader";
2525
/** Application version. */
26-
public static final String APP_VERSION = "1.0";
26+
public static final String APP_VERSION = "v1.0";
2727
/** Application release date. */
2828
public static final String APP_RELEASE_DATE = "2012-10-10";
2929

src/com/ggtracker/uploader/Utils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public void focusLost( final FocusEvent event ) {
6464
* @param targetUrl URL to be opened when clicked
6565
*/
6666
public static JLabel createLinkLabel( final String text, final String targetUrl ) {
67-
final JLabel linkLabel = new JLabel( "<html><a href='#'>v" + text.replace( " ", "&nbsp;" ).replace( "<", "&lt;" ).replace( ">", "&gt;" ) + "</a></html>" );
68-
67+
final JLabel linkLabel = new JLabel( "<html><a href='#'>" + text.replace( " ", "&nbsp;" ).replace( "<", "&lt;" ).replace( ">", "&gt;" ) + "</a></html>" );
68+
6969
linkLabel.setCursor( Cursor.getPredefinedCursor( Cursor.HAND_CURSOR ) );
7070
linkLabel.setToolTipText( targetUrl );
7171

0 commit comments

Comments
 (0)