fix public/private keywords that snuck into declarations somehow

This commit is contained in:
baldurk
2016-04-09 15:44:22 +02:00
parent 8a2b0bd6e9
commit e4dae008e9
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -364,7 +364,7 @@ public:
virtual ~WrappedIDXGIDevice() { SAFE_RELEASE(m_pReal); SAFE_RELEASE(m_pD3DDevice); }
static const public int AllocPoolCount = 4;
static const int AllocPoolCount = 4;
ALLOCATE_WITH_WRAPPED_POOL(WrappedIDXGIDevice, AllocPoolCount);
IMPLEMENT_IDXGIOBJECT_WITH_REFCOUNTDXGIOBJECT_CUSTOMQUERY;
@@ -543,7 +543,7 @@ public:
RefCountDXGIObject(real), m_pReal(real), m_pD3DDevice(d3d) { m_pD3DDevice->AddRef(); }
virtual ~WrappedIDXGIDevice1() { SAFE_RELEASE(m_pReal); SAFE_RELEASE(m_pD3DDevice); }
static const public int AllocPoolCount = 4;
static const int AllocPoolCount = 4;
ALLOCATE_WITH_WRAPPED_POOL(WrappedIDXGIDevice1, AllocPoolCount);
IMPLEMENT_IDXGIOBJECT_WITH_REFCOUNTDXGIOBJECT_CUSTOMQUERY;
@@ -702,7 +702,7 @@ public:
RefCountDXGIObject(real), m_pReal(real), m_pD3DDevice(d3d) { m_pD3DDevice->AddRef(); }
virtual ~WrappedIDXGIDevice2() { SAFE_RELEASE(m_pReal); SAFE_RELEASE(m_pD3DDevice); }
static const public int AllocPoolCount = 4;
static const int AllocPoolCount = 4;
ALLOCATE_WITH_WRAPPED_POOL(WrappedIDXGIDevice2, AllocPoolCount);
IMPLEMENT_IDXGIOBJECT_WITH_REFCOUNTDXGIOBJECT_CUSTOMQUERY;
@@ -814,7 +814,7 @@ public:
RefCountDXGIObject(real), m_pReal(real), m_pD3DDevice(d3d) { m_pD3DDevice->AddRef(); }
virtual ~WrappedIDXGIDevice3() { SAFE_RELEASE(m_pReal); SAFE_RELEASE(m_pD3DDevice); }
static const public int AllocPoolCount = 4;
static const int AllocPoolCount = 4;
ALLOCATE_WITH_WRAPPED_POOL(WrappedIDXGIDevice3, AllocPoolCount);
IMPLEMENT_IDXGIOBJECT_WITH_REFCOUNTDXGIOBJECT_CUSTOMQUERY;
+1 -1
View File
@@ -326,7 +326,7 @@ class OpenGLHook : LibraryHook
PFNWGLGETPIXELFORMATATTRIBFVARBPROC wglGetPixelFormatAttribfvARB_realfunc;
PFNWGLGETPIXELFORMATATTRIBIVARBPROC wglGetPixelFormatAttribivARB_realfunc;
static private GLInitParams GetInitParamsForDC(HDC dc)
static GLInitParams GetInitParamsForDC(HDC dc)
{
GLInitParams ret;