diff options
Diffstat (limited to 'protocols/MSN/src/msn_useropts.cpp')
-rw-r--r-- | protocols/MSN/src/msn_useropts.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/protocols/MSN/src/msn_useropts.cpp b/protocols/MSN/src/msn_useropts.cpp index d8d247cf4b..24b04705e0 100644 --- a/protocols/MSN/src/msn_useropts.cpp +++ b/protocols/MSN/src/msn_useropts.cpp @@ -1,5 +1,7 @@ /*
Plugin of Miranda IM for communicating with users of the MSN Messenger protocol.
+
+Copyright (c) 2012-2013 Miranda NG Team
Copyright (c) 2006-2012 Boris Krasnovskiy.
Copyright (c) 2003-2005 George Hazan.
Copyright (c) 2002-2003 Richard Hughes (original version).
@@ -26,12 +28,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /*
INT_PTR CALLBACK MsnDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
- switch (msg)
+ switch (msg)
{
case WM_INITDIALOG:
{
TranslateDialogDefault(hwndDlg);
-
+
const HANDLE hContact = (HANDLE)lParam;
SetDlgItemInt(hwndDlg, IDC_MOBILE, DBGetContactSettingByte(hContact, m_szModuleName, "MobileAllowed", 0), 0);
@@ -59,7 +61,7 @@ int MsnOnDetailsInit(WPARAM wParam, LPARAM lParam) if (!MSN_IsMyContact(hContact))
return 0;
- if (getDword(hContact, "FlagBits", 0))
+ if (getDword(hContact, "FlagBits", 0))
{
OPTIONSDIALOGPAGE odp = {0};
@@ -72,6 +74,6 @@ int MsnOnDetailsInit(WPARAM wParam, LPARAM lParam) UserInfo_AddPage(wParam, &odp);
}
-*/
+*/
return 0;
}
|