mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5304
This commit is contained in:
parent
30b07d1140
commit
ac8f0a4d3e
|
@ -23933,6 +23933,9 @@ Rom 3 Feb 2005
|
||||||
to be consistent with the rest of the tabs.
|
to be consistent with the rest of the tabs.
|
||||||
- Bug Fix: Additional check to see if any new messages have been added
|
- Bug Fix: Additional check to see if any new messages have been added
|
||||||
before changing the visible messages in the message tab.
|
before changing the visible messages in the message tab.
|
||||||
|
- Bug Fix: Change the default blank time to 5 minutes.
|
||||||
|
- Bug Fix: Remove the ability for us to affect the secure password
|
||||||
|
option on NT based machines.
|
||||||
|
|
||||||
client/win/
|
client/win/
|
||||||
win_screensaver.cpp, .h
|
win_screensaver.cpp, .h
|
||||||
|
@ -23940,3 +23943,5 @@ Rom 3 Feb 2005
|
||||||
ViewWork.cpp
|
ViewWork.cpp
|
||||||
ViewTransfers.cpp
|
ViewTransfers.cpp
|
||||||
ViewMessages.cpp
|
ViewMessages.cpp
|
||||||
|
win_build/installerv2/
|
||||||
|
BOINC.ism
|
||||||
|
|
|
@ -177,12 +177,16 @@ HRESULT CScreensaver::Create( HINSTANCE hInstance )
|
||||||
// make sure you check return value of registry queries
|
// make sure you check return value of registry queries
|
||||||
// in case the item in question doesn't happen to exist.
|
// in case the item in question doesn't happen to exist.
|
||||||
bReturnValue = UtilGetRegKey( REG_BLANK_TIME, m_dwBlankTime );
|
bReturnValue = UtilGetRegKey( REG_BLANK_TIME, m_dwBlankTime );
|
||||||
if ( bReturnValue < 0 ) m_dwBlankTime = 0;
|
if ( bReturnValue != 0 ) m_dwBlankTime = 5;
|
||||||
|
|
||||||
// Calculate the estimated blank time by adding the current time
|
// Calculate the estimated blank time by adding the current time
|
||||||
// and and the user specified time which is in minutes
|
// and and the user specified time which is in minutes
|
||||||
m_dwBlankTime = time(0) + (m_dwBlankTime * 60);
|
m_dwBlankTime = time(0) + (m_dwBlankTime * 60);
|
||||||
|
|
||||||
|
// Save the value back to the registry in case this is the first
|
||||||
|
// execution and so we need the default value later.
|
||||||
|
UtilSetRegKey( REG_BLANK_TIME, blank_time );
|
||||||
|
|
||||||
|
|
||||||
// Create the screen saver window(s)
|
// Create the screen saver window(s)
|
||||||
if( m_SaverMode == sm_preview ||
|
if( m_SaverMode == sm_preview ||
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue