diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index cbbcac52038..45b7b70ab95 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -60,7 +60,7 @@ HRESULT update_ie_statustext(InternetExplorer* This, LPCWSTR text) return S_OK; } -void adjust_ie_docobj_rect(HWND frame, RECT* rc) +static void adjust_ie_docobj_rect(HWND frame, RECT* rc) { HWND hwndRebar = GetDlgItem(frame, IDC_BROWSE_REBAR); HWND hwndStatus = GetDlgItem(frame, IDC_BROWSE_STATUSBAR); diff --git a/dlls/shdocvw/shdocvw.h b/dlls/shdocvw/shdocvw.h index d45f5593e23..4f3425d825c 100644 --- a/dlls/shdocvw/shdocvw.h +++ b/dlls/shdocvw/shdocvw.h @@ -284,7 +284,6 @@ static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_r extern HINSTANCE shdocvw_hinstance; extern void register_iewindow_class(void); extern void unregister_iewindow_class(void); -extern void adjust_ie_docobj_rect(HWND, RECT*); extern HRESULT update_ie_statustext(InternetExplorer*, LPCWSTR); HRESULT register_class_object(BOOL);