strmbase: Get rid of the unused BaseWindowImpl_GetDefaultRect() function.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
70b3e2b0e8
commit
0854f67d09
|
@ -147,12 +147,6 @@ HRESULT WINAPI BaseWindowImpl_DoneWithWindow(BaseWindow *This)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
RECT WINAPI BaseWindowImpl_GetDefaultRect(BaseWindow *This)
|
||||
{
|
||||
static RECT defRect = {0, 0, 800, 600};
|
||||
return defRect;
|
||||
}
|
||||
|
||||
BOOL WINAPI BaseControlWindowImpl_PossiblyEatMessage(BaseWindow *This, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
BaseControlWindow* pControlWindow = impl_from_BaseWindow(This);
|
||||
|
|
|
@ -391,7 +391,6 @@ HRESULT WINAPI BaseWindow_Destroy(BaseWindow *pBaseWindow);
|
|||
|
||||
HRESULT WINAPI BaseWindowImpl_PrepareWindow(BaseWindow *This);
|
||||
HRESULT WINAPI BaseWindowImpl_DoneWithWindow(BaseWindow *This);
|
||||
RECT WINAPI BaseWindowImpl_GetDefaultRect(BaseWindow *This);
|
||||
LRESULT WINAPI BaseWindowImpl_OnReceiveMessage(BaseWindow *This, HWND hwnd, INT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
BOOL WINAPI BaseWindowImpl_OnSize(BaseWindow *This, LONG Height, LONG Width);
|
||||
|
||||
|
|
Loading…
Reference in New Issue