| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| 3  * Copyright (C) 2006-2015 Eyeo GmbH | 3  * Copyright (C) 2006-2015 Eyeo GmbH | 
| 4  * | 4  * | 
| 5  * Adblock Plus is free software: you can redistribute it and/or modify | 5  * Adblock Plus is free software: you can redistribute it and/or modify | 
| 6  * it under the terms of the GNU General Public License version 3 as | 6  * it under the terms of the GNU General Public License version 3 as | 
| 7  * published by the Free Software Foundation. | 7  * published by the Free Software Foundation. | 
| 8  * | 8  * | 
| 9  * Adblock Plus is distributed in the hope that it will be useful, | 9  * Adblock Plus is distributed in the hope that it will be useful, | 
| 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 98   m_isAdvised = false; | 98   m_isAdvised = false; | 
| 99   m_hTabWnd = NULL; | 99   m_hTabWnd = NULL; | 
| 100   m_hStatusBarWnd = NULL; | 100   m_hStatusBarWnd = NULL; | 
| 101   m_hPaneWnd = NULL; | 101   m_hPaneWnd = NULL; | 
| 102   m_nPaneWidth = 0; | 102   m_nPaneWidth = 0; | 
| 103   m_pWndProcStatus = NULL; | 103   m_pWndProcStatus = NULL; | 
| 104   m_hTheme = NULL; | 104   m_hTheme = NULL; | 
| 105   m_isInitializedOk = false; | 105   m_isInitializedOk = false; | 
| 106 | 106 | 
| 107 | 107 | 
| 108   m_tab = new CPluginTab(this); | 108   m_tab = new CPluginTab(); | 
| 109 | 109 | 
| 110   Dictionary::Create(GetBrowserLanguage()); | 110   Dictionary::Create(GetBrowserLanguage()); | 
| 111 } | 111 } | 
| 112 | 112 | 
| 113 CPluginClass::~CPluginClass() | 113 CPluginClass::~CPluginClass() | 
| 114 { | 114 { | 
| 115   delete m_tab; | 115   delete m_tab; | 
| 116 } | 116 } | 
| 117 | 117 | 
| 118 | 118 | 
| (...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1728           s_criticalSectionLocal.Unlock(); | 1728           s_criticalSectionLocal.Unlock(); | 
| 1729 | 1729 | 
| 1730         } | 1730         } | 
| 1731       } | 1731       } | 
| 1732     } | 1732     } | 
| 1733 | 1733 | 
| 1734     hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); | 1734     hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); | 
| 1735   } | 1735   } | 
| 1736   return hTabWnd; | 1736   return hTabWnd; | 
| 1737 } | 1737 } | 
| OLD | NEW | 
|---|