Changeset 1716


Ignore:
Timestamp:
09/02/14 16:12:03 (10 years ago)
Author:
dmay
Message:

small fixes and formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDgenerateJacaretoReplay.java

    r1715 r1716  
    191191 
    192192        //@formatter:off 
    193         writeLine(writer, "<Calendar procTime=\"0\" " 
     193        writeLine(writer, "<Calendar " 
     194            + "procTime=\"0\" " 
    194195            + "duration=\"0\" " 
    195196            + "year=\"" + now.get(Calendar.YEAR) + "\" " 
    196             + "month=\"" + now.get(Calendar.MONTH) + "\" " 
     197            + "month=\"" + (now.get(Calendar.MONTH) + 1) + "\" " 
    197198            + "date=\"" + now.get(Calendar.DAY_OF_MONTH) + "\" " 
    198199            + "hour=\"" + now.get(Calendar.HOUR_OF_DAY) + "\" " 
     
    282283                } 
    283284                else if (event.getType() instanceof KeyPressed) { 
    284                     checkIfMouseDragged(); 
     285                    // checkIfMouseDragged(); 
    285286 
    286287                    if (lastKeySequenceEvent == null) { 
     
    291292                } 
    292293                else if (event.getType() instanceof KeyReleased) { 
    293                     checkIfMouseDragged(); 
     294                    // checkIfMouseDragged(); 
    294295 
    295296                    writeKeyEvent(writer, event, 402); 
Note: See TracChangeset for help on using the changeset viewer.