Skip to content

Commit

Permalink
Merge pull request #296 from iamchathu/patch-1
Browse files Browse the repository at this point in the history
Change the constructor to correct one
  • Loading branch information
mgarin committed Jun 11, 2015
2 parents 8c689a2 + 2067b2e commit d0e9fd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/ui/src/com/alee/managers/hotkey/Hotkey.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ public final class Hotkey
/**
* Mathematical Symbols
*/
public static final HotkeyData PLUS = new HotkeyData ( true, false, true, KeyEvent.VK_ADD );
public static final HotkeyData MINUS = new HotkeyData ( true, false, true, KeyEvent.VK_MINUS );
public static final HotkeyData MULTIPLY = new HotkeyData ( true, false, true, KeyEvent.VK_MULTIPLY );
public static final HotkeyData DIVIDE = new HotkeyData ( true, false, true, KeyEvent.VK_DIVIDE );
public static final HotkeyData PLUS = new HotkeyData ( KeyEvent.VK_ADD );
public static final HotkeyData MINUS = new HotkeyData ( KeyEvent.VK_MINUS );
public static final HotkeyData MULTIPLY = new HotkeyData ( KeyEvent.VK_MULTIPLY );
public static final HotkeyData DIVIDE = new HotkeyData ( KeyEvent.VK_DIVIDE );

}

0 comments on commit d0e9fd4

Please sign in to comment.