From f82bd023a6d95e228555a635833b5307996e3141 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Thu, 12 Apr 2007 08:11:16 +0000 Subject: [PATCH] (xrm_get_preference_database, Fmac_get_preference) [TARGET_API_MAC_CARBON]: Use CFPreferencesAppSynchronize. --- src/mac.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mac.c b/src/mac.c index 5084a02b27d..8363326cc05 100644 --- a/src/mac.c +++ b/src/mac.c @@ -1835,6 +1835,8 @@ xrm_get_preference_database (application) if (app_id == NULL) goto out; } + if (!CFPreferencesAppSynchronize (app_id)) + goto out; key_set = CFSetCreateMutable (NULL, 0, &kCFCopyStringSetCallBacks); if (key_set == NULL) @@ -4650,6 +4652,9 @@ otherwise. */) if (app_id == NULL) goto out; } + if (!CFPreferencesAppSynchronize (app_id)) + goto out; + key_str = cfstring_create_with_string (XCAR (key)); if (key_str == NULL) goto out; -- 2.39.5