ShowCursor() and HideCursor() are deprecated in Mac OS X, replacing the calls.
svn-id: r25041
This commit is contained in:
parent
7f0156322f
commit
9686d2cf40
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ int BrowserDialog::runModal() {
|
|||
g_system->setFeatureState(OSystem::kFeatureFullscreenMode, false);
|
||||
|
||||
// Temporarily show the real mouse
|
||||
ShowCursor();
|
||||
CGDisplayShowCursor(kCGDirectMainDisplay);
|
||||
|
||||
err = NavGetDefaultDialogCreationOptions(&options);
|
||||
assert(err == noErr);
|
||||
|
@ -85,7 +85,7 @@ int BrowserDialog::runModal() {
|
|||
err = NavDialogRun(dialogRef);
|
||||
assert(err == noErr);
|
||||
|
||||
HideCursor();
|
||||
CGDisplayHideCursor(kCGDirectMainDisplay);
|
||||
|
||||
result = NavDialogGetUserAction(dialogRef);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue