From a636ed8349440856a0b6d476107dab63bc4bb128 Mon Sep 17 00:00:00 2001 From: Christian Wieninger Date: Wed, 19 Sep 2007 21:13:32 +0000 Subject: - preparation to save/restore screenshot interval --- setup.cpp | 3 +++ setup.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cpp b/setup.cpp index 5565ddd..5dea426 100644 --- a/setup.cpp +++ b/setup.cpp @@ -94,6 +94,7 @@ bool Setup::ParseSetupEntry( char const* name, char const* value ) else if ( strcmp( name, "ShowLogo" ) == 0 ) { m_showLogo = atoi(value); } else if ( strcmp( name, "UseAjax" ) == 0 ) { m_useAjax = atoi(value); } else if ( strcmp( name, "ShowInfoBox" ) == 0 ) { m_showInfoBox = atoi(value); } + else if ( strcmp( name, "ScreenShotInterval" ) == 0 ) { m_screenshotInterval = atoi(value); } else return false; return true; } @@ -220,6 +221,8 @@ bool Setup::SaveSetup() liveplugin->SetupStore("ShowLogo", m_showLogo); liveplugin->SetupStore("UseAjax", m_useAjax); liveplugin->SetupStore("ShowInfoBox", m_showInfoBox); + liveplugin->SetupStore("ScreenShotInterval", m_screenshotInterval); + return true; } diff --git a/setup.h b/setup.h index 73d825c..11945d4 100644 --- a/setup.h +++ b/setup.h @@ -54,7 +54,7 @@ class Setup void SetAdminLogin(std::string login) { m_adminLogin = login; } std::string SetAdminPassword(std::string password); void SetUseAuth(int auth) { m_useAuth = auth; } - void SetScrenshotInterval(int interval) { m_screenshotInterval = interval; } + void SetScreenshotInterval(int interval) { m_screenshotInterval = interval; } void SetTimes(std::string times) { m_times = times; } void SetStartScreen(std::string startscreen) { m_startscreen = startscreen; } void SetTheme(std::string theme) { m_theme = theme; } -- cgit v1.2.3