fixed bug that onpause view potentially starts during setting cutting marks

This commit is contained in:
louis
2016-03-22 16:55:46 +01:00
parent 842fc1a254
commit 65b5d74b7a
8 changed files with 44 additions and 4 deletions

View File

@@ -178,15 +178,19 @@ public:
******************************************************************/
class cVeDrOnPause : public cViewElement, public cScrapManager {
private:
bool started;
int actorsIndex;
char *recfilename;
public:
cVeDrOnPause(void);
virtual ~cVeDrOnPause(void);
void Close(void);
int Delay(void) { return attribs->Delay() * 1000; };
void SetTokenContainer(void);
void Set(const char *recfilename);
bool Parse(bool forced = false);
bool Started(void) { return started; };
void ResetSleep(void);
};
/******************************************************************