Ignore:
Timestamp:
08/16/12 15:16:22 (12 years ago)
Author:
pharms
Message:
  • removed leading m in member variables
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/gui/KeyInteraction.java

    r544 r550  
    2121 
    2222    /** the key, that was actually pressed */ 
    23     private VirtualKey mKey; 
     23    private VirtualKey key; 
    2424 
    2525    /** 
     
    2828    public KeyInteraction(VirtualKey key) { 
    2929        super(); 
    30         mKey = key; 
     30        this.key = key; 
    3131    } 
    3232 
     
    3535     */ 
    3636    public VirtualKey getKey() { 
    37         return mKey; 
     37        return key; 
    3838    } 
    3939 
Note: See TracChangeset for help on using the changeset viewer.