mirror of https://github.com/BOINC/boinc.git
- client: fix compile warning
fixes #535 svn path=/trunk/boinc/; revision=14688
This commit is contained in:
parent
b0869fb768
commit
f43452829c
|
@ -1217,3 +1217,9 @@ Rom Feb 5 2008
|
|||
|
||||
clientgui/
|
||||
MainDocument.cpp
|
||||
|
||||
David Feb 5 2008
|
||||
- client: fix compile warning
|
||||
|
||||
lib/
|
||||
msg_log.h
|
||||
|
|
|
@ -317,8 +317,8 @@ bool CDlgAdvPreferences::SavePreferencesSettings() {
|
|||
mask.run_if_user_active=true;
|
||||
//
|
||||
if(m_txtProcIdleFor->IsEnabled()) {
|
||||
m_txtProcIdleFor->GetValue().ToLong(&tl);
|
||||
prefs.idle_time_to_run=tl;
|
||||
m_txtProcIdleFor->GetValue().ToLong(&td);
|
||||
prefs.idle_time_to_run=td;
|
||||
mask.idle_time_to_run=true;
|
||||
}
|
||||
//
|
||||
|
|
|
@ -47,6 +47,8 @@ public:
|
|||
int pid;
|
||||
|
||||
MSG_LOG(FILE* output);
|
||||
virtual ~MSG_LOG(){}
|
||||
|
||||
void enter_level(int = 1);
|
||||
void leave_level() { enter_level(-1); }
|
||||
MSG_LOG& operator++() { enter_level(); return *this; }
|
||||
|
|
Loading…
Reference in New Issue