r602: Fix baver's code... don't insert timecode when show_tc is not set
[cinelerra_cv/mob.git] / cinelerra / toggleauto.C
blob2995602a669282b4b216ad3cfad69d7f3a92a335
1 #include "intauto.h"
2 #include "language.h"
4 IntAuto::IntAuto(IntAutos *autos)
5  : Auto((Autos*)autos)
9 IntAuto::~IntAuto()
13 int IntAuto::value_to_str(char *string, float value)
15                 if(value > 0) sprintf(string, _("ON"));
16                 else sprintf(string, _("OFF"));
19 void IntAuto::copy(int64_t start, int64_t end, FileXML *file, int default_auto)
21         
24 void IntAuto::load(FileXML *file)