diff options
| author | George Hazan <ghazan@miranda.im> | 2016-10-28 16:18:50 +0300 | 
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2016-10-28 16:18:50 +0300 | 
| commit | cf9de21af3073e29cb7b149fbd8427241de70729 (patch) | |
| tree | 2a0b17f49d14d4a51bc942f15bf3747509f0c3cf /protocols/Steam/src | |
| parent | 3de431cc811a1fbf9cd0d520fe33b6163c73e919 (diff) | |
- old useless helpers removed from the Options module;
- mir_app functions introduced instead of them;
- OPENOPTIONSDIALOG structure removed from m_options.h
Diffstat (limited to 'protocols/Steam/src')
| -rw-r--r-- | protocols/Steam/src/steam_events.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Steam/src/steam_events.cpp b/protocols/Steam/src/steam_events.cpp index b545ec2808..43a906b56e 100644 --- a/protocols/Steam/src/steam_events.cpp +++ b/protocols/Steam/src/steam_events.cpp @@ -33,15 +33,15 @@ int CSteamProto::OnOptionsInit(WPARAM wParam, LPARAM)  {  	OPTIONSDIALOGPAGE odp = { 0 };  	odp.hInstance = g_hInstance; -	odp.pwszTitle = m_tszUserName; +	odp.szTitle.w = m_tszUserName;  	odp.flags = ODPF_BOLDGROUPS | ODPF_UNICODE; -	odp.pwszGroup = LPGENW("Network"); +	odp.szGroup.w = LPGENW("Network"); -	odp.pwszTab = LPGENW("Account"); +	odp.szTab.w = LPGENW("Account");  	odp.pDialog = CSteamOptionsMain::CreateOptionsPage(this);  	Options_AddPage(wParam, &odp); -	odp.pwszTab = LPGENW("Blocked contacts"); +	odp.szTab.w = LPGENW("Blocked contacts");  	odp.pDialog = CSteamOptionsBlockList::CreateOptionsPage(this);  	Options_AddPage(wParam, &odp);  	return 0;  | 
