| 172 | } |
| 173 | |
| 174 | void AppConfiguration::SetLastCheckUpdateTime(DWORD lastCheckUpdateTime/* = 0*/) |
| 175 | { |
| 176 | if (0 == lastCheckUpdateTime) |
| 177 | { |
| 178 | lastCheckUpdateTime = (DWORD)getUnixTimeStamp(); |
| 179 | } |
| 180 | SetDwordProperty(TEXT("LastChkUpdateTime"), lastCheckUpdateTime); |
| 181 | } |
| 182 | |
| 183 | void AppConfiguration::SetCheckingUpdateDisabled(BOOL disabled) |
| 184 | { |
nothing calls this directly
no test coverage detected