diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-04-21 19:25:44 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-04-21 19:25:44 +0000 |
commit | 2617eeedce96b0d31abaf5547810bfd407d9feac (patch) | |
tree | 914956226f89d20817ff2fc4d9b224d3c8dadf3a /plugins/AuthState | |
parent | cc50b4442a9a0c93d2dc2b8a32fc27327a02b73d (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@16738 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AuthState')
-rw-r--r-- | plugins/AuthState/src/options.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/AuthState/src/options.h b/plugins/AuthState/src/options.h index 35c75d697a..b0e77cd221 100644 --- a/plugins/AuthState/src/options.h +++ b/plugins/AuthState/src/options.h @@ -15,27 +15,6 @@ struct Opts extern Opts Options;
-class CPluginDlgBase : public CDlgBase
-{
- const char *m_szModule;
-public:
- CPluginDlgBase(HINSTANCE hInst, int idDialog, const char *module) : CDlgBase(hInst, idDialog), m_szModule(module) {};
-
- void CreateLink(CCtrlData& ctrl, const char *szSetting, BYTE type, DWORD iValue)
- {
- ctrl.CreateDbLink(m_szModule, szSetting, type, iValue);
- }
- void CreateLink(CCtrlData& ctrl, const char *szSetting, TCHAR *szValue)
- {
- ctrl.CreateDbLink(m_szModule, szSetting, szValue);
- }
- template<class T>
- __inline void CreateLink(CCtrlData& ctrl, CMOption<T> &option)
- {
- ctrl.CreateDbLink(new CMOptionLink<T>(option));
- }
-};
-
class COptionsDialog : public CPluginDlgBase
{
|