From bfa820317a009a6f6d45b6fc01e4c52d7e68d551 Mon Sep 17 00:00:00 2001 From: luz paz Date: Thu, 8 Jul 2021 08:14:30 -0400 Subject: [PATCH] Fix CHECK_VIDEO_FRAME_INTERVALL->CHECK_VIDEO_FRAME_INTERVAL --- toonz/sources/include/tnzcamera.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/toonz/sources/include/tnzcamera.h b/toonz/sources/include/tnzcamera.h index aeab6979..3b6fa295 100644 --- a/toonz/sources/include/tnzcamera.h +++ b/toonz/sources/include/tnzcamera.h @@ -10,7 +10,7 @@ #include "toonz/toonzscene.h" //#define WRITE_LOG_FILE -//#define CHECK_VIDEO_FRAME_INTERVALL +//#define CHECK_VIDEO_FRAME_INTERVAL //#define USE_OPENGL_SHARED #undef DVAPI @@ -100,8 +100,8 @@ class DVAPI TnzCamera : public QObject { bool m_freeze; -#ifdef CHECK_VIDEO_FRAME_INTERVALL - double m_videoFrameIntervall; +#ifdef CHECK_VIDEO_FRAME_INTERVAL + double m_videoFrameInterval; #endif TnzCamera(); @@ -132,9 +132,9 @@ public: TXshSimpleLevel *getCurrentLevel() const; TFrameId getCurrentFid() const; -#ifdef CHECK_VIDEO_FRAME_INTERVALL - double getVideoFrameIntervall() const { return m_videoFrameIntervall; } - void setVideoFrameIntervall(double intervall); +#ifdef CHECK_VIDEO_FRAME_INTERVAL + double getVideoFrameInterval() const { return m_videoFrameInterval; } + void setVideoFrameInterval(double interval); #endif bool isAcquireFrame() const { return m_acquireFrame; }