macOS: use correct format for connexionName field.

3DConnexion configuration tool appears to use Pascal strings there.
pull/252/merge
whitequark 2018-07-12 12:17:22 +00:00
parent fa5557740c
commit f2ecd7abe6
1 changed files with 1 additions and 1 deletions

View File

@ -1268,7 +1268,7 @@ typedef void (*UnregisterConnexionClientProc)(UInt16);
static BOOL connexionShiftIsDown = NO; static BOOL connexionShiftIsDown = NO;
static UInt16 connexionClient = 0; static UInt16 connexionClient = 0;
static UInt32 connexionSignature = 'SoSp'; static UInt32 connexionSignature = 'SoSp';
static UInt8 *connexionName = (UInt8 *)"SolveSpace"; static UInt8 *connexionName = (UInt8 *)"\x10SolveSpace";
static CFBundleRef spaceBundle = NULL; static CFBundleRef spaceBundle = NULL;
static InstallConnexionHandlersProc installConnexionHandlers = NULL; static InstallConnexionHandlersProc installConnexionHandlers = NULL;
static CleanupConnexionHandlersProc cleanupConnexionHandlers = NULL; static CleanupConnexionHandlersProc cleanupConnexionHandlers = NULL;