Robert Shearman : ole: Remove stub from TRACEs of functions that aren't stubs.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jan 6 14:49:30 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 95312fcb636e9f10cd2a50290ea254ae6f84d2e6
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=95312fcb636e9f10cd2a50290ea254ae6f84d2e6

Author: Robert Shearman <rob at codeweavers.com>
Date:   Fri Jan  6 21:08:09 2006 +0100

ole: Remove "stub" from TRACEs of functions that aren't stubs.

---

 dlls/ole32/antimoniker.c      |    2 +-
 dlls/ole32/compositemoniker.c |    2 +-
 dlls/ole32/ole2.c             |    2 +-
 dlls/ole32/storage32.c        |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/ole32/antimoniker.c b/dlls/ole32/antimoniker.c
index bcd59e1..3c25a75 100644
--- a/dlls/ole32/antimoniker.c
+++ b/dlls/ole32/antimoniker.c
@@ -133,7 +133,7 @@ AntiMonikerImpl_Release(IMoniker* iface)
 static HRESULT WINAPI
 AntiMonikerImpl_GetClassID(IMoniker* iface,CLSID *pClassID)
 {
-    TRACE("(%p,%p),stub!\n",iface,pClassID);
+    TRACE("(%p,%p)\n",iface,pClassID);
 
     if (pClassID==NULL)
         return E_POINTER;
diff --git a/dlls/ole32/compositemoniker.c b/dlls/ole32/compositemoniker.c
index c6510ab..99dd27b 100644
--- a/dlls/ole32/compositemoniker.c
+++ b/dlls/ole32/compositemoniker.c
@@ -170,7 +170,7 @@ CompositeMonikerImpl_Release(IMoniker* i
 static HRESULT WINAPI
 CompositeMonikerImpl_GetClassID(IMoniker* iface,CLSID *pClassID)
 {
-    TRACE("(%p,%p),stub!\n",iface,pClassID);
+    TRACE("(%p,%p)\n",iface,pClassID);
 
     if (pClassID==NULL)
         return E_POINTER;
diff --git a/dlls/ole32/ole2.c b/dlls/ole32/ole2.c
index fd55930..d16a7ce 100644
--- a/dlls/ole32/ole2.c
+++ b/dlls/ole32/ole2.c
@@ -929,7 +929,7 @@ HRESULT WINAPI OleSetContainedObject(
   IRunnableObject* runnable = NULL;
   HRESULT          hres;
 
-  TRACE("(%p,%x), stub!\n", pUnknown, fContained);
+  TRACE("(%p,%x)\n", pUnknown, fContained);
 
   hres = IUnknown_QueryInterface(pUnknown,
 				 &IID_IRunnableObject,
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index cde6526..8512667 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -5737,7 +5737,7 @@ HRESULT WINAPI StgCreatePropSetStg(IStor
 {
     HRESULT hr;
 
-    TRACE("(%p, 0x%lx, %p): stub\n", pstg, reserved, ppPropSetStg);
+    TRACE("(%p, 0x%lx, %p)\n", pstg, reserved, ppPropSetStg);
     if (reserved)
         hr = STG_E_INVALIDPARAMETER;
     else




More information about the wine-cvs mailing list