[opendemo-cvs] CVS: opendemo/tools/odcut odfile_parser.pm,1.7,1.8
Status: Beta
Brought to you by:
girlich
From: Uwe G. <gi...@us...> - 2004-10-22 21:23:47
|
Update of /cvsroot/opendemo/opendemo/tools/odcut In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19185 Modified Files: odfile_parser.pm Log Message: _deep_copy and _getAttribute are private functions with _ prefix Index: odfile_parser.pm =================================================================== RCS file: /cvsroot/opendemo/opendemo/tools/odcut/odfile_parser.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** odfile_parser.pm 31 Mar 2004 08:39:07 -0000 1.7 --- odfile_parser.pm 22 Oct 2004 21:23:37 -0000 1.8 *************** *** 477,481 **** my $node = [ $self->{"snaparray"}->[$self->{"list"}->[$index]], ! deep_copy($self->{"snaparray"}->[$self->{"list"}->[$index] + 1]) ]; --- 477,481 ---- my $node = [ $self->{"snaparray"}->[$self->{"list"}->[$index]], ! _deep_copy($self->{"snaparray"}->[$self->{"list"}->[$index] + 1]) ]; *************** *** 483,487 **** # It will reduce the acutal time to currentTime but hold # the different times inside a single frame. ! my $offsetTime = - getAttribute($node,0,"time") + $currentTime; # Adapt the frame time. --- 483,487 ---- # It will reduce the acutal time to currentTime but hold # the different times inside a single frame. ! my $offsetTime = - _getAttribute($node,0,"time") + $currentTime; # Adapt the frame time. |