diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-27 08:54:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-27 08:54:36 +0000 |
commit | d9da7f147fbe91d2e70721de96907ae1d273b591 (patch) | |
tree | 09eb8cb7934ab23a2c7a1588866b7c2ce21186be /protocols/Yahoo | |
parent | 76af3716fe56e728b2cad2df2bec7bb4a5b1c8df (diff) |
- langpack returned back;
- fixes for the 64-bit compilation issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@651 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo')
-rw-r--r-- | protocols/Yahoo/options.cpp | 2 | ||||
-rw-r--r-- | protocols/Yahoo/user_info.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Yahoo/options.cpp b/protocols/Yahoo/options.cpp index 8ed3168650..bfd5b00ab2 100644 --- a/protocols/Yahoo/options.cpp +++ b/protocols/Yahoo/options.cpp @@ -367,7 +367,7 @@ static INT_PTR CALLBACK DlgProcYahooOptsIgnore(HWND hwndDlg, UINT msg, WPARAM wP * YahooOptInit - initialize/register our Options w/ Miranda.
*/
-INT_PTR __cdecl CYahooProto::OnOptionsInit(WPARAM wParam,LPARAM lParam)
+int __cdecl CYahooProto::OnOptionsInit(WPARAM wParam,LPARAM lParam)
{
OPTIONSDIALOGPAGE odp = { 0 };
diff --git a/protocols/Yahoo/user_info.cpp b/protocols/Yahoo/user_info.cpp index 4447506397..d17ca165c7 100644 --- a/protocols/Yahoo/user_info.cpp +++ b/protocols/Yahoo/user_info.cpp @@ -111,7 +111,7 @@ static INT_PTR CALLBACK YahooUserInfoDlgProc( HWND hwndDlg, UINT msg, WPARAM wPa /////////////////////////////////////////////////////////////////////////////////////////
// OnInfoInit - initializes user info option dialogs
-INT_PTR __cdecl CYahooProto::OnUserInfoInit( WPARAM wParam, LPARAM lParam )
+int __cdecl CYahooProto::OnUserInfoInit( WPARAM wParam, LPARAM lParam )
{
//if ( !JCallService( MS_PROTO_ISPROTOCOLLOADED, 0, ( LPARAM )m_szModuleName ))
// return 0;
|