summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2012-09-07 15:37:01 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2012-09-07 15:37:01 +0000
commitbdf69f6310f09c90c20512ebe9dfa73ec524da59 (patch)
tree3a9b0372ed8f409ed91e955027c6a259f2517789 /plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp
parent91aff9f4b3e7ca761b42f89d58d72a938c9a4414 (diff)
-minor signature fixes
-fixed path to precompiled headers git-svn-id: http://svn.miranda-ng.org/main/trunk@1545 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp')
-rw-r--r--plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp b/plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp
index 9da4ee4373..2f7ee91aca 100644
--- a/plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp
+++ b/plugins/UserInfoEx/src/ex_import/dlg_ExImProgress.cpp
@@ -28,7 +28,7 @@ Last change by : $Author: ing.u.horn $
===============================================================================
*/
-#include "commonheaders.h"
+#include "..\commonheaders.h"
#include "dlg_ExImProgress.h"
/***********************************************************************************************************
@@ -41,7 +41,7 @@ Last change by : $Author: ing.u.horn $
* params: none
* return: nothing
**/
-LRESULT CALLBACK DlgProcProgress(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+INT_PTR CALLBACK DlgProcProgress(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
@@ -102,7 +102,7 @@ LRESULT CALLBACK DlgProcProgress(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lPar
CProgress::CProgress()
{
_dwStartTime = GetTickCount();
- _hDlg = CreateDialog(ghInst, MAKEINTRESOURCE(IDD_COPYPROGRESS), 0, (DLGPROC)DlgProcProgress);
+ _hDlg = CreateDialog(ghInst, MAKEINTRESOURCE(IDD_COPYPROGRESS), 0, DlgProcProgress);
}
/**