diff options
author | Kenneth Russel <[email protected]> | 2004-08-05 21:15:29 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2004-08-05 21:15:29 +0000 |
commit | a242e5547ac65dfa44c736619aeebcabfeb83c18 (patch) | |
tree | 9108bdb73f428941ca796d664216dac05317c9ae | |
parent | 984eba0a85aa5388465569980f66ab80a45bc6f6 (diff) |
Fixed compiler warning in updateContextRegister
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@150 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r-- | src/native/jogl/MacOSXWindowSystemInterface.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/native/jogl/MacOSXWindowSystemInterface.m b/src/native/jogl/MacOSXWindowSystemInterface.m index 0f7c5aa7e..c56f6e5bb 100644 --- a/src/native/jogl/MacOSXWindowSystemInterface.m +++ b/src/native/jogl/MacOSXWindowSystemInterface.m @@ -145,6 +145,7 @@ void* updateContextRegister(void* context, void* view) ContextUpdater *contextUpdater = [[ContextUpdater alloc] init]; [contextUpdater registerFor:nsContext with:nsView]; + return NULL; } void updateContextUnregister(void* context, void* view, void* updater) |