From a62beeeaf79ebf47aed560fdd959c1e3ce06c548 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 26 Aug 2010 13:03:00 +0200 Subject: [PATCH] shdocvw: Make adjust_ie_docobj_rect() static. --- dlls/shdocvw/iexplore.c | 2 +- dlls/shdocvw/shdocvw.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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);