| OLD | NEW | 
|---|
| 1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" | 
| 2 | 2 | 
| 3 #include "PluginFilter.h" | 3 #include "PluginFilter.h" | 
| 4 #include "PluginSettings.h" | 4 #include "PluginSettings.h" | 
| 5 #include "PluginClient.h" | 5 #include "PluginClient.h" | 
| 6 #include "PluginClientFactory.h" | 6 #include "PluginClientFactory.h" | 
| 7 #include "PluginMutex.h" | 7 #include "PluginMutex.h" | 
| 8 #include "PluginSettings.h" | 8 #include "PluginSettings.h" | 
| 9 #include "PluginSystem.h" | 9 #include "PluginSystem.h" | 
| 10 #include "PluginClass.h" | 10 #include "PluginClass.h" | 
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 702     { | 702     { | 
| 703       DEBUG_FILTER("Filter::ShouldBlock " + type + " YES") | 703       DEBUG_FILTER("Filter::ShouldBlock " + type + " YES") | 
| 704 | 704 | 
| 705 #ifdef ENABLE_DEBUG_RESULT | 705 #ifdef ENABLE_DEBUG_RESULT | 
| 706         CPluginDebug::DebugResultBlocking(type, srcCString, domain); | 706         CPluginDebug::DebugResultBlocking(type, srcCString, domain); | 
| 707 #endif | 707 #endif | 
| 708     } | 708     } | 
| 709     return true; | 709     return true; | 
| 710   } | 710   } | 
| 711 #ifdef ENABLE_DEBUG_RESULT | 711 #ifdef ENABLE_DEBUG_RESULT | 
| 712   CPluginDebug::DebugResultIgnoring(type, src, domain); | 712   CPluginDebug::DebugResultIgnoring(type, srcCString, domain); | 
| 713 #endif | 713 #endif | 
| 714   return false; | 714   return false; | 
| 715 } | 715 } | 
| OLD | NEW | 
|---|