Francois Gouget : shell32/tests: Make I{DataObject, ShellBrowser}Impl_Construct() static.

Alexandre Julliard julliard at winehq.org
Thu Jun 24 11:15:21 CDT 2010


Module: wine
Branch: master
Commit: 4898f6cb36c025c5296b0a78ccc846edf8938768
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4898f6cb36c025c5296b0a78ccc846edf8938768

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Jun 24 10:10:24 2010 +0200

shell32/tests: Make I{DataObject,ShellBrowser}Impl_Construct() static.

---

 dlls/shell32/tests/shlview.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/shell32/tests/shlview.c b/dlls/shell32/tests/shlview.c
index dc60a49..e3e0ef2 100644
--- a/dlls/shell32/tests/shlview.c
+++ b/dlls/shell32/tests/shlview.c
@@ -94,7 +94,7 @@ typedef struct {
 
 static const IDataObjectVtbl IDataObjectImpl_Vtbl;
 
-IDataObject* IDataObjectImpl_Construct(void)
+static IDataObject* IDataObjectImpl_Construct(void)
 {
     IDataObjectImpl *obj;
 
@@ -216,7 +216,7 @@ typedef struct {
 
 static const IShellBrowserVtbl IShellBrowserImpl_Vtbl;
 
-IShellBrowser* IShellBrowserImpl_Construct(void)
+static IShellBrowser* IShellBrowserImpl_Construct(void)
 {
     IShellBrowserImpl *browser;
 




More information about the wine-cvs mailing list