Fix python module (bpy) compilation - broken since 8d084e8c

(reported on bf-python mailing-list and in my github (!), let's hope in
the future we get more reports in developer.blender.org instead ;))
This commit is contained in:
Dalai Felinto 2014-10-17 11:39:14 -03:00
parent ded2d8a777
commit 7fb68cf83f

@ -53,7 +53,7 @@ public:
const bool stereoVisual,
const GHOST_TUns16 numOfAASamples
) :
GHOST_Window(width, height, state, type, stereoVisual, false, numOfAASamples),
GHOST_Window(width, height, state, stereoVisual, false, numOfAASamples),
m_system(system)
{
setTitle(title);
@ -91,6 +91,12 @@ protected:
private:
GHOST_SystemNULL *m_system;
/**
* \param type The type of rendering context create.
* \return Indication of success.
*/
virtual GHOST_Context *newDrawingContext(GHOST_TDrawingContextType type) {return NULL;}
};