ShowCursor() and HideCursor() are deprecated in Mac OS X, replacing the calls.

svn-id: r25041
This commit is contained in:
Oystein Eftevaag 2007-01-06 19:22:05 +00:00
parent 7f0156322f
commit 9686d2cf40

View file

@ -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);