This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Changed fallthrough return value to nullptr in OpenGLContext::NativeContext::getNativeHandle() on Windows
tags/2021-05-28
ed
6 years ago
parent
67486d47e0
commit
ccbe0816d0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_opengl/native/juce_OpenGL_win32.h
+ 1
- 1
modules/juce_opengl/native/juce_OpenGL_win32.h
View File
@@ -155,7 +155,7 @@ public:
if (nativeWindow != nullptr)
return (HWND) nativeWindow->getNativeHandle();
return
{}
;
return
nullptr
;
}
private:
Write
Preview
Loading…
Cancel
Save