Ignore:
Timestamp:
05/13/08 14:03:43 (16 years ago)
Author:
ra33
Message:

Valid frameset names must not begin and end with a letter, and be all letters and digits in between. Thus removing the need for framesetNameAdjustment methods.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Simple.java

    r22 r24  
    16451645                        }
    16461646                        // Display the frames
    1647                         String adjustedFramesetName = FrameUtils
    1648                                         .GetFramesetNameAdjusted(framesetName);
    16491647                        for (int i = firstFrameNo; i <= lastFrameNo; i++) {
    1650                                 Frame frame = FrameIO.LoadFrame(adjustedFramesetName + i);
     1648                                Frame frame = FrameIO.LoadFrame(framesetName + i);
    16511649                                if (frame != null) {
    16521650                                        double thisFramesPause = pause;
Note: See TracChangeset for help on using the changeset viewer.