- Timestamp:
- 09/02/14 16:12:03 (10 years ago)
- 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 191 191 192 192 //@formatter:off 193 writeLine(writer, "<Calendar procTime=\"0\" " 193 writeLine(writer, "<Calendar " 194 + "procTime=\"0\" " 194 195 + "duration=\"0\" " 195 196 + "year=\"" + now.get(Calendar.YEAR) + "\" " 196 + "month=\"" + now.get(Calendar.MONTH) + "\" "197 + "month=\"" + (now.get(Calendar.MONTH) + 1) + "\" " 197 198 + "date=\"" + now.get(Calendar.DAY_OF_MONTH) + "\" " 198 199 + "hour=\"" + now.get(Calendar.HOUR_OF_DAY) + "\" " … … 282 283 } 283 284 else if (event.getType() instanceof KeyPressed) { 284 checkIfMouseDragged();285 // checkIfMouseDragged(); 285 286 286 287 if (lastKeySequenceEvent == null) { … … 291 292 } 292 293 else if (event.getType() instanceof KeyReleased) { 293 checkIfMouseDragged();294 // checkIfMouseDragged(); 294 295 295 296 writeKeyEvent(writer, event, 402);
Note: See TracChangeset
for help on using the changeset viewer.