summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-29 08:12:13 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-29 22:21:04 +0100
commitab2d0ff4d7c0a3c76401b0f07b85dc2267d1eb7c (patch)
tree375a542d2d45ff86e941dc3914d6b2b9b9c648dd /connectivity
parentf0152b737d9a196e83752a546154735efee5c2be (diff)
loplugin:cstylecast (Mac OS X)
Change-Id: Ia8f2c9f1c1c284708a2cbde379197ec6ba58742f
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/macab/MacabRecords.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/macab/MacabRecords.cxx b/connectivity/source/drivers/macab/MacabRecords.cxx
index 167965c14ae7..4e663bad114a 100644
--- a/connectivity/source/drivers/macab/MacabRecords.cxx
+++ b/connectivity/source/drivers/macab/MacabRecords.cxx
@@ -677,7 +677,7 @@ MacabHeader *MacabRecords::createHeaderForProperty(const ABPropertyType _propert
/* Get the keys and values */
dictKeys = (CFStringRef *) malloc(sizeof(CFStringRef)*numRecords);
dictValues = (CFTypeRef *) malloc(sizeof(CFTypeRef)*numRecords);
- CFDictionaryGetKeysAndValues((CFDictionaryRef) _propertyValue, (const void **) dictKeys, (const void **) dictValues);
+ CFDictionaryGetKeysAndValues((CFDictionaryRef) _propertyValue, reinterpret_cast<const void **>(dictKeys), (const void **) dictValues);
propertyNameString = CFStringToOUString(_propertyName);
@@ -1020,7 +1020,7 @@ void MacabRecords::insertPropertyIntoMacabRecord(const ABPropertyType _propertyT
CFTypeRef *dictValues;
dictKeys = (CFStringRef *) malloc(sizeof(CFStringRef)*numRecords);
dictValues = (CFTypeRef *) malloc(sizeof(CFTypeRef)*numRecords);
- CFDictionaryGetKeysAndValues((CFDictionaryRef) _propertyValue, (const void **) dictKeys, (const void **) dictValues);
+ CFDictionaryGetKeysAndValues((CFDictionaryRef) _propertyValue, reinterpret_cast<const void **>(dictKeys), (const void **) dictValues);
/* Going through each element... */
for(i = 0; i < numRecords; i++)