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

Side by Side Diff: src/plugin/PluginClass.cpp

Issue 11557015: Tooltip notification. Check for update fixes. (Closed)
Patch Set: More comments addressed Created Sept. 25, 2013, 9:57 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/plugin/NotificationMessage.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "PluginClass.h" 3 #include "PluginClass.h"
4 #include "PluginSettings.h" 4 #include "PluginSettings.h"
5 #include "PluginSystem.h" 5 #include "PluginSystem.h"
6 #ifdef SUPPORT_FILTER 6 #ifdef SUPPORT_FILTER
7 #include "PluginFilter.h" 7 #include "PluginFilter.h"
8 #endif 8 #endif
9 #include "PluginMimeFilterClient.h" 9 #include "PluginMimeFilterClient.h"
10 #include "PluginClient.h" 10 #include "PluginClient.h"
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 { 588 {
589 m_isInitializedOk = true; 589 m_isInitializedOk = true;
590 if (!InitObject(true)) 590 if (!InitObject(true))
591 { 591 {
592 // Unadvice(); 592 // Unadvice();
593 } 593 }
594 UpdateStatusBar(); 594 UpdateStatusBar();
595 } 595 }
596 } 596 }
597 } 597 }
598 if (notificationMessage.IsVisible()) 598 notificationMessage.Hide();
599 {
600 notificationMessage.Hide();
601 }
602 DEBUG_GENERAL("Tab change end"); 599 DEBUG_GENERAL("Tab change end");
603 return VARIANT_TRUE; 600 return VARIANT_TRUE;
604 } 601 }
605 602
606 // This gets called whenever there's a browser event 603 // This gets called whenever there's a browser event
607 STDMETHODIMP CPluginClass::Invoke(DISPID dispidMember, REFIID riid, LCID lcid, W ORD wFlags, DISPPARAMS* pDispParams, VARIANT* pvarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr) 604 STDMETHODIMP CPluginClass::Invoke(DISPID dispidMember, REFIID riid, LCID lcid, W ORD wFlags, DISPPARAMS* pDispParams, VARIANT* pvarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr)
608 { 605 {
609 WCHAR tmp[256]; 606 WCHAR tmp[256];
610 wsprintf(tmp, L"Invoke: %d\n", dispidMember); 607 wsprintf(tmp, L"Invoke: %d\n", dispidMember);
611 DEBUG_GENERAL(tmp); 608 DEBUG_GENERAL(tmp);
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 } 1959 }
1963 } 1960 }
1964 } 1961 }
1965 1962
1966 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); 1963 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT);
1967 } 1964 }
1968 1965
1969 return hTabWnd; 1966 return hTabWnd;
1970 1967
1971 } 1968 }
OLDNEW
« no previous file with comments | « src/plugin/NotificationMessage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld