Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.1, 0.8.2, and 0.8.3

shellext: remove TRACE output on QueryInterface

caused a lot of noise without being really interesting

Changeset e96a31b0b07e

Parent 9e9f623e431e

by Adrian Buehlmann

Changes to one file · Browse files at e96a31b0b07e Showing diff from parent 9e9f623e431e Diff from another changeset...

 
233
234
235
236
237
238
 
239
240
241
242
243
 
244
245
246
247
248
 
249
250
251
252
253
 
254
255
256
257
258
 
259
260
261
262
263
 
264
265
266
267
268
269
 
233
234
235
 
 
 
236
237
238
239
 
 
240
241
242
243
 
 
244
245
246
247
 
 
248
249
250
251
 
 
252
253
254
255
 
 
256
257
 
 
258
259
260
@@ -233,37 +233,28 @@
     STDMETHODIMP CShellExt::QueryInterface(REFIID riid, LPVOID FAR* ppv) -{ - std::string clsname = "UNKNOWN CLSID"; - +{   *ppv = NULL;   if (IsEqualIID(riid, IID_IShellExtInit) || IsEqualIID(riid, IID_IUnknown))   { - *ppv = (LPSHELLEXTINIT)this; - clsname = "IID_IShellExtInit"; + *ppv = (LPSHELLEXTINIT) this;   }   else if (IsEqualIID(riid, IID_IContextMenu))   { - *ppv = (LPCONTEXTMENU)this; - clsname = "IID_IContextMenu"; + *ppv = (LPCONTEXTMENU) this;   }   else if (IsEqualIID(riid, IID_IContextMenu2))   { - *ppv = (IContextMenu2 *) this; - clsname = "IID_IContextMenu2"; + *ppv = (IContextMenu2*) this;   }   else if (IsEqualIID(riid, IID_IContextMenu3))   { - *ppv = (IContextMenu3 *) this; - clsname = "IID_IContextMenu3"; + *ppv = (IContextMenu3*) this;   }   else if (IsEqualIID(riid, IID_IShellIconOverlayIdentifier))   { - *ppv = (IShellIconOverlayIdentifier *) this; - clsname = "IID_IShellIconOverlayIdentifier"; + *ppv = (IShellIconOverlayIdentifier*) this;   } - - TDEBUG_TRACE("CShellExt::QueryInterface: " << clsname);     if (*ppv)   {