issue 1
(com.reyco1.manager.CuePointManager.removeAllCuePoints() bug) reported by chichilatte
- What steps will reproduce the problem?
1. Create a CuePointManager instance
2. Add a cuepoint
3. Try to remove all cuepoints with removeAllCuePoints()
What is the expected output? What do you see instead?
All cuepoints removed. Instead we get the error:
ReferenceError: Error #1069: Property name not found on String and there is
no default value [...] Line 85
What version of the product are you using? On what operating system?
revision 165 i think. Windows XP
Please provide any additional information below.
line 85 should be changed from...
this.removeCuePoint(this.arrCuePoints[a].name, false);
to
this.removeCuePoint(this.arrCuePoints[a], false);// :)
What steps will reproduce the problem?
1. Create a CuePointManager instance
2. Add a cuepoint
3. Try to remove all cuepoints with removeAllCuePoints()
What is the expected output? What do you see instead?
All cuepoints removed. Instead we get the error:
ReferenceError: Error #1069: Property name not found on String and there is
no default value [...] Line 85
What version of the product are you using? On what operating system?
revision 165 i think. Windows XP
Please provide any additional information below.
line 85 should be changed from...
this.removeCuePoint(this.arrCuePoints[a].name, false);
to
this.removeCuePoint(this.arrCuePoints[a], false);// :)