Ignore:
Timestamp:
10/08/08 13:59:53 (16 years ago)
Author:
bjn8
Message:

Improved widget linking... track-link coversion command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src_apollo/org/apollo/audio/structure/AudioStructureModel.java

    r349 r352  
    11991199                        if (odframe != null) { // is loaded?
    12001200                                AbstractTrackGraphNode tinf = odframe.getLinkedTrack(virtualFilename);
    1201                                 assert(tinf != null); // due to the assumption that the model is consistent
    1202                                 if (tinf.getName() != newName) {
     1201                                if (tinf != null && tinf.getName() != newName) {
    12031202                                        tinf.setName(newName);
    12041203                                        // Note: a fetch might be waiting on this - i.e in progress. Thus must be cancelled.
Note: See TracChangeset for help on using the changeset viewer.