mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
2006-07-19 Jeremy Bettis <jeremy@deadbeef.com>
* Source/win32/NSUserDefaultsWin32.m: The method wantToReadDefaultsSince: was always returning YES. Fixed to work as intended. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23182 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3ca79c6b64
commit
cb029ae7e4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-07-19 Jeremy Bettis <jeremy@deadbeef.com>
|
||||
|
||||
* Source/win32/NSUserDefaultsWin32.m: The method wantToReadDefaultsSince:
|
||||
was always returning YES. Fixed to work as intended.
|
||||
|
||||
2006-07-18 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSHTTPURLHandle.m: Only queue a new read on a handle if there
|
||||
|
|
|
@ -387,7 +387,7 @@ struct NSUserDefaultsWin32_DomainInfo
|
|||
|
||||
- (BOOL) wantToReadDefaultsSince: (NSDate*)lastSyncDate
|
||||
{
|
||||
if (lastSyncDate == nil && registryInfo != 0)
|
||||
if (lastSyncDate != nil && registryInfo != 0)
|
||||
{
|
||||
// Detect changes in the registry
|
||||
NSMapEnumerator iter;
|
||||
|
|
Loading…
Reference in a new issue