Index: src/plugin/PluginClass.cpp |
diff --git a/src/plugin/PluginClass.cpp b/src/plugin/PluginClass.cpp |
index 485630c02677360272a831ae1dcdf9d2c20a8c0f..f48f2e9ee53dbe1113402d2edfcfd90ae9d1b5f5 100644 |
--- a/src/plugin/PluginClass.cpp |
+++ b/src/plugin/PluginClass.cpp |
@@ -543,6 +543,7 @@ void STDMETHODCALLTYPE CPluginClass::OnBeforeNavigate2( |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnBeforeNavigate2"); |
} |
} |
@@ -560,6 +561,7 @@ void STDMETHODCALLTYPE CPluginClass::OnDownloadComplete() |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnDownloadComplete"); |
} |
} |
@@ -581,6 +583,7 @@ void STDMETHODCALLTYPE CPluginClass::OnDocumentComplete(IDispatch* frameBrowserD |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnDocumentComplete"); |
} |
} |
@@ -611,6 +614,7 @@ void STDMETHODCALLTYPE CPluginClass::OnWindowStateChanged(unsigned long flags, u |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnWindowStateChanged"); |
} |
} |
@@ -639,6 +643,7 @@ void STDMETHODCALLTYPE CPluginClass::OnCommandStateChange(long /*command*/, VARI |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnCommandStateChange"); |
} |
} |
@@ -651,6 +656,7 @@ void STDMETHODCALLTYPE CPluginClass::OnOnQuit() |
} |
catch (...) |
{ |
+ EntryPointExceptionDefault("CPluginClass::OnOnQuit"); |
} |
} |