Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
replace ASCII values with the actual characters
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Jul 5, 2011
1 parent 159737f commit 78f064d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ public void onClick(ClickEvent event)
*/
// private static final int MIN_HEIGHT = 48;

private static final int KEY_G = 71;
private static final int KEY_J = 74;
private static final int KEY_K = 75;
private static final int KEY_N = 78;
private static final int KEY_G = 'G';
private static final int KEY_J = 'J';
private static final int KEY_K = 'K';
private static final int KEY_N = 'N';

/**
* Construct a new {@link InlineTargetCellEditor}.
Expand Down

0 comments on commit 78f064d

Please sign in to comment.