Skip to content
Snippets Groups Projects
Commit e3133793 authored by Richard Alam's avatar Richard Alam
Browse files

- changed the wrong field to be zero based. Should be the slide field instead of num.

parent 1f930c90
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,11 @@ public class GotoSlidePresentationRecordEvent extends
}
public void setSlide(int slide) {
eventMap.put("slide", Integer.toString(slide));
/**
* Subtract 1 from the page number to be zero-based to be
* compatible with 0.81 and earlier. (ralam Sept 2, 2014)
*/
eventMap.put("slide", Integer.toString(slide - 1));
}
public void setId(String id) {
......@@ -35,12 +39,8 @@ public class GotoSlidePresentationRecordEvent extends
}
public void setNum(int num) {
/**
* Subtract 1 from the page number to be zero-based to be
* compatible with 0.81 and earlier. (ralam Sept 2, 2014)
*/
// System.out.println("GOTO_SLIDE_EVENT real pagenum=[" + num + "] rec pagenum=[" + (num - 1) + "]");
eventMap.put("num", Integer.toString(num - 1));
eventMap.put("num", Integer.toString(num));
}
public void setCurrent(boolean current) {
......
......@@ -31,11 +31,7 @@ public class ResizeAndMoveSlidePresentationRecordEvent extends
}
public void setNum(int num) {
/**
* Subtract 1 from the page number to be zero-based to be
* compatible with 0.81 and earlier. (ralam Sept 2, 2014)
*/
eventMap.put("num", Integer.toString(num - 1));
eventMap.put("num", Integer.toString(num));
}
public void setCurrent(boolean current) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment