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:
jbettis 2006-07-19 20:51:39 +00:00
parent 75a4f420a5
commit f280ffd0bf
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> 2006-07-18 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSHTTPURLHandle.m: Only queue a new read on a handle if there * 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 - (BOOL) wantToReadDefaultsSince: (NSDate*)lastSyncDate
{ {
if (lastSyncDate == nil && registryInfo != 0) if (lastSyncDate != nil && registryInfo != 0)
{ {
// Detect changes in the registry // Detect changes in the registry
NSMapEnumerator iter; NSMapEnumerator iter;