From 09149640ba93f73bea9f83ae280c35dbb3f453b8 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 16 Mar 2011 08:30:33 +0100 Subject: [PATCH] mshtml: Make get_pos_rect() static. --- dlls/mshtml/pluginhost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/pluginhost.c b/dlls/mshtml/pluginhost.c index 5c8e9538063..1cfae5f04ed 100644 --- a/dlls/mshtml/pluginhost.c +++ b/dlls/mshtml/pluginhost.c @@ -125,7 +125,7 @@ static void update_readystate(PluginHost *host) } /* FIXME: We shouldn't need this function and we should embed plugin directly in the main document */ -void get_pos_rect(PluginHost *host, RECT *ret) +static void get_pos_rect(PluginHost *host, RECT *ret) { ret->top = 0; ret->left = 0;