Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginClass.cpp

Issue 5137721374801920: Issue #1173 - Default behavior for catch-all blocks
Patch Set: Changed entry point defaults in CPluginClass to match rebase Created March 20, 2015, 9:50 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/PluginClass.cpp
===================================================================
--- a/src/plugin/PluginClass.cpp
+++ b/src/plugin/PluginClass.cpp
@@ -543,6 +543,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnBeforeNavigate2");
}
}
@@ -560,6 +561,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnDownloadComplete");
}
}
@@ -581,6 +583,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnDocumentComplete");
}
}
@@ -611,6 +614,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnWindowStateChanged");
}
}
@@ -639,6 +643,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnCommandStateChange");
}
}
@@ -651,6 +656,7 @@
}
catch (...)
{
+ EntryPointExceptionDefault("CPluginClass::OnOnQuit");
}
}
« src/plugin/Exception.h ('K') | « src/plugin/Exception.h ('k') | src/plugin/PluginDebug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld