diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-13 15:05:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-13 15:05:51 +0000 |
commit | 6d0076208df04f1d161220beb7cd9155330dead9 (patch) | |
tree | 234a9fb900eef695da2948e7de9d19190853b6d3 /protocols/Steam/src/steam_dialogs.h | |
parent | 05cd31c1d99a2adb8bae18b220a728ef66567543 (diff) |
dialog fix for Steam
git-svn-id: http://svn.miranda-ng.org/main/trunk@12787 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_dialogs.h')
-rw-r--r-- | protocols/Steam/src/steam_dialogs.h | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/protocols/Steam/src/steam_dialogs.h b/protocols/Steam/src/steam_dialogs.h index dd919fa365..768d87c75c 100644 --- a/protocols/Steam/src/steam_dialogs.h +++ b/protocols/Steam/src/steam_dialogs.h @@ -1,15 +1,7 @@ #ifndef _STEAM_DIALOGS_H_
#define _STEAM_DIALOGS_H_
-class CSteamDlgBase : public CProtoDlgBase<CSteamProto>
-{
-private:
- typedef CProtoDlgBase<CSteamProto> CSuper;
-
-protected:
- __inline CSteamDlgBase(CSteamProto *proto, int idDialog, HWND parent, bool show_label = true) :
- CSuper(proto, idDialog, parent, show_label) { }
-};
+typedef CProtoDlgBase<CSteamProto> CSteamDlgBase;
/////////////////////////////////////////////////////////////////////////////////
@@ -97,20 +89,18 @@ private: CCtrlCheck m_biggerAvatars;
protected:
- CSteamOptionsMain(CSteamProto *proto, int idDialog, HWND hwndParent = NULL);
-
void OnInitDialog();
void OnApply();
public:
+ CSteamOptionsMain(CSteamProto *proto, int idDialog, HWND hwndParent = NULL);
+
static CDlgBase *CreateAccountManagerPage(void *param, HWND owner)
{
CSteamOptionsMain *page = new CSteamOptionsMain((CSteamProto*)param, IDD_ACCMGR, owner);
page->Show();
return page;
}
-
- static CDlgBase *CreateOptionsPage(void *param) { return new CSteamOptionsMain((CSteamProto*)param, IDD_OPT_MAIN); }
};
////////////////////////////////////////////////////////////////////////////////
@@ -124,14 +114,12 @@ private: CCtrlCombo m_contacts;
CCtrlButton m_add;
-protected:
+public:
CSteamOptionsBlockList(CSteamProto *proto);
+protected:
void OnInitDialog();
void OnBlock(CCtrlButton*);
-
-public:
- static CDlgBase *CreateOptionsPage(void *param) { return new CSteamOptionsBlockList((CSteamProto*)param); }
};
#endif //_STEAM_DIALOGS_H_
\ No newline at end of file |