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

Unified Diff: src/plugin/PluginClass.cpp

Issue 5171515343503360: Issue #41 - Bring method of determining IE version up to date (Closed)
Patch Set: Second version Created June 25, 2014, 6:53 p.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
@@ -667,7 +667,7 @@
}
else
{
- if (CPluginClient::GetInstance()->GetIEVersion() > 6)
+ if ( ABP::IE::installed_major_version() > 6 )
{
RECT rect;
BOOL rectRes = GetClientRect(m_hStatusBarWnd, &rect);
@@ -824,7 +824,7 @@
}
- int ieVersion = CPluginClient::GetInstance()->GetIEVersion();
+ int ieVersion = ABP::IE::installed_major_version();
// Create status pane
if (bBHO && ieVersion > 6 && !CreateStatusBarPane())
{

Powered by Google App Engine
This is Rietveld