From 0502e3b3d647a6465121a1a509de42081af55d25 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 25 Oct 2012 21:58:24 +0000 Subject: [PATCH] fixed code style (whitespace) --- src/lib/platform/COSXScreen.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/lib/platform/COSXScreen.cpp b/src/lib/platform/COSXScreen.cpp index b97158f3..99849976 100644 --- a/src/lib/platform/COSXScreen.cpp +++ b/src/lib/platform/COSXScreen.cpp @@ -644,21 +644,21 @@ void COSXScreen::showCursor() { LOG((CLOG_DEBUG "showing cursor")); - CGDisplayShowCursor(m_displayID); - CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman); - CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanFalse); - CFRelease(propertyString); + CGDisplayShowCursor(m_displayID); + CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman); + CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanFalse); + CFRelease(propertyString); } void COSXScreen::hideCursor() { - CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman); - CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanTrue); - CFRelease(propertyString); + CFStringRef propertyString = CFStringCreateWithCString(NULL, "SetsCursorInBackground", kCFStringEncodingMacRoman); + CGSSetConnectionProperty(_CGSDefaultConnection(), _CGSDefaultConnection(), propertyString, kCFBooleanTrue); + CFRelease(propertyString); LOG((CLOG_DEBUG "hiding cursor")); - CGDisplayHideCursor(m_displayID); + CGDisplayHideCursor(m_displayID); } void @@ -684,7 +684,7 @@ COSXScreen::enable() // hide cursor if (!m_cursorHidden) { - hideCursor(); + hideCursor(); m_cursorHidden = true; }