Module: wine Branch: master Commit: 09149640ba93f73bea9f83ae280c35dbb3f453b8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=09149640ba93f73bea9f83ae28...
Author: Francois Gouget fgouget@free.fr Date: Wed Mar 16 08:30:33 2011 +0100
mshtml: Make get_pos_rect() static.
---
dlls/mshtml/pluginhost.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/pluginhost.c b/dlls/mshtml/pluginhost.c index 5c8e953..1cfae5f 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;