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:
Jeremy Bettis 2006-07-19 20:51:39 +00:00
parent 3ca79c6b64
commit cb029ae7e4
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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;