| 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 HWND CPluginClass::GetBrowserHWND() const | 118 HWND CPluginClass::GetBrowserHWND() const |
| (...skipping 1514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 s_criticalSectionLocal.Unlock(); | 1633 s_criticalSectionLocal.Unlock(); |
| 1634 | 1634 |
| 1635 return icon; | 1635 return icon; |
| 1636 } | 1636 } |
| 1637 | 1637 |
| 1638 ATOM CPluginClass::GetAtomPaneClass() | 1638 ATOM CPluginClass::GetAtomPaneClass() |
| 1639 { | 1639 { |
| 1640 return s_atomPaneClass; | 1640 return s_atomPaneClass; |
| 1641 } | 1641 } |
| 1642 | 1642 |
| OLD | NEW |