Removed one more OS X warning about deprecates function.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7239 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-03-10 22:36:23 +00:00
parent 7499728266
commit a3a9305428
1 changed files with 4 additions and 0 deletions

View File

@ -380,7 +380,11 @@ void fl_no_gl_context() {
# elif defined(__APPLE_QUARTZ__)
// warning: the Quartz version should probably use Core GL (CGL) instead of AGL
AGLContext ctx = aglGetCurrentContext();
# if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
if (ctx) aglSetWindowRef(ctx, NULL);
# else
if (ctx) aglSetDrawable(ctx, NULL);
# endif
aglSetCurrentContext(0);
# else
# error unsupported platform