From 397e6e9e357702c9b9497d980283ff36675117fa Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Fri, 24 Mar 2017 08:33:01 -0700 Subject: [PATCH] Fix typo: CFStringref --> CFStringRef (cherry picked from commit 493643477c99a3ab79d9f8dedc10b79edc860a0b) --- src/osx/core/cfstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osx/core/cfstring.cpp b/src/osx/core/cfstring.cpp index 27471b24e5..78d7a289bf 100644 --- a/src/osx/core/cfstring.cpp +++ b/src/osx/core/cfstring.cpp @@ -621,7 +621,7 @@ wxCFStringRef::wxCFStringRef( const wxString &st , wxFontEncoding WXUNUSED_IN_UN #else #error "unsupported Unicode representation" #endif - CFStringref ref = CFStringCreateWithBytes( kCFAllocatorDefault, + CFStringRef ref = CFStringCreateWithBytes( kCFAllocatorDefault, (const UInt8*)data, size, cfencoding, false /* no BOM */ ); if (ref) {