| 122 | } |
| 123 | |
| 124 | Widget::Widget() |
| 125 | : mWindow(NULL), mClose(false), mLastXPos(0), mLastYPos(0), mButton(-1), |
| 126 | mWidth(512), mHeight(512), mFramePBO(0) |
| 127 | { |
| 128 | } |
| 129 | |
| 130 | Widget::Widget(int pWidth, int pHeight, const char* pTitle, const Widget* pWindow, const bool invisible) |
| 131 | : mWindow(NULL), mClose(false), mLastXPos(0), mLastYPos(0), mButton(-1), mFramePBO(0) |
nothing calls this directly
no test coverage detected